This commit is contained in:
WBHarry 2025-08-06 10:56:21 +02:00
parent 0bb20b2ddc
commit d01965e5b9
20 changed files with 146 additions and 67 deletions

View file

@ -619,6 +619,7 @@
margin-left: 8px;
height: 20px;
width: 20px;
filter: @dark-filter;
}
}
}
@ -651,23 +652,25 @@
}
}
.theme-light .application {
&.sheet.dh-style {
button.glow {
animation: glow-dark 0.75s infinite alternate;
}
}
.component.dh-style.card-preview-container {
background-image: url('../assets/parchments/dh-parchment-light.png');
.preview-text-container {
background-image: url(../assets/parchments/dh-parchment-dark.png);
.theme-light {
.application {
&.sheet.dh-style {
button.glow {
animation: glow-dark 0.75s infinite alternate;
}
}
.preview-selected-icon-container {
background-image: url(../assets/parchments/dh-parchment-dark.png);
color: var(--color-light-5);
.component.dh-style.card-preview-container {
background-image: url('../assets/parchments/dh-parchment-light.png');
.preview-text-container {
background-image: url(../assets/parchments/dh-parchment-dark.png);
}
.preview-selected-icon-container {
background-image: url(../assets/parchments/dh-parchment-dark.png);
color: var(--color-light-5);
}
}
}
}

View file

@ -3,11 +3,11 @@
.appTheme({
.item-card-header .item-icons-list .item-icon img {
filter: invert(88%) sepia(98%) saturate(1784%) hue-rotate(311deg) brightness(104%) contrast(91%);
filter: @golden-filter;
}
}, {
.item-card-header .item-icons-list .item-icon img {
filter: invert(87%) sepia(15%) saturate(343%) hue-rotate(333deg) brightness(110%) contrast(87%);
filter: @bright-beige-filter;
}
});

View file

@ -1,8 +1,12 @@
.theme-light .daggerheart.dh-style.setting.homebrew-settings .domains-tab {
.theme-light .daggerheart.dh-style.setting.homebrew-settings .domains.tab {
.domains-container .domain-container {
.domain-label {
background-image: url('../assets/parchments/dh-parchment-light.png');
}
img {
filter: @dark-filter;
}
}
}
@ -11,20 +15,33 @@
.title-wrapper {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
&:not(:first-child) {
margin-top: 16px;
&:first-child {
h2 {
margin-top: 0;
}
}
h4 {
.top-lines {
position: relative;
bottom: 8px;
}
h2 {
display: flex;
align-items: center;
font-family: @font-subtitle;
position: relative;
width: auto;
white-space: nowrap;
margin-top: 16px;
gap: 8px;
color: light-dark(@dark, @beige);
.add-button {
position: absolute;
top: 0;
right: -28px;
border-radius: 50%;
width: 24px;
height: 24px;
@ -66,22 +83,12 @@
white-space: nowrap;
text-wrap: auto;
text-align: center;
z-index: 2;
}
.domain-icon {
&:before {
content: ' ';
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
mask: var(--domain-icon) no-repeat center;
mask-size: contain;
background: linear-gradient(139.01deg, #efe6d8 3.51%, #372e1f 96.49%);
}
}
img {
border-radius: 6px;
filter: @beige-filter;
}
}
}
@ -133,6 +140,7 @@
textarea {
width: 100%;
height: 120px;
margin-top: 4px;
}
}
}

View file

@ -119,6 +119,7 @@
top: -7px;
font-size: 12px;
font-variant: petite-caps;
z-index: 2;
}
input {

View file

@ -5,6 +5,8 @@
@golden-10: #f3c26710;
@golden-40: #f3c26740;
@golden-bg: #f3c2671a;
@golden-filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(2008%) hue-rotate(332deg) brightness(99%)
contrast(92%);
@chat-blue: #8f87ee;
@chat-blue-10: #8f87ee10;
@ -49,6 +51,7 @@
@dark: #222;
@dark-15: #22222215;
@dark-40: #22222240;
@dark-filter: brightness(0) saturate(100%);
@deep-black: #0e0d15;
@ -56,6 +59,10 @@
@beige-15: #efe6d815;
@beige-50: #efe6d850;
@beige-80: #efe6d880;
@beige-filter: brightness(0) saturate(100%) invert(87%) sepia(25%) saturate(164%) hue-rotate(339deg) brightness(106%)
contrast(87%);
@bright-beige-filter: brightness(0) saturate(100%) invert(87%) sepia(15%) saturate(343%) hue-rotate(333deg)
brightness(110%) contrast(87%);
@soft-white-shadow: rgba(255, 255, 255, 0.05);