diff --git a/styles/Apps/GenericItemSheet.css b/styles/Apps/GenericItemSheet.css index 0c2263a..472fa81 100644 --- a/styles/Apps/GenericItemSheet.css +++ b/styles/Apps/GenericItemSheet.css @@ -1,7 +1,7 @@ .taf.GenericItemSheet { > .window-content { padding: 0; - color: var(--item-sheet-color); + color: var(--item-sheet-colour); background: var(--item-sheet-background); } @@ -11,7 +11,7 @@ gap: 4px; align-items: center; padding: 0.5rem; - border-bottom: 1px solid var(--item-sheet-divider-color); + border-bottom: 1px solid var(--item-sheet-divider-colour); img { border-radius: 4px; @@ -60,19 +60,19 @@ background: var(--item-sheet-description-menu-background); button { - color: var(--item-sheet-description-menu-color); + color: var(--item-sheet-description-menu-colour); } } } input { - color: var(--item-sheet-input-color); + color: var(--item-sheet-input-colour); background: var(--item-sheet-input-background); } taf-toggle { --toggle-background: var(--item-sheet-input-background); - --slider-checked-colour: var(--item-sheet-toggle-slider-enabled-color); - --slider-unchecked-colour: var(--item-sheet-toggle-slider-disabled-color) + --slider-checked-colour: var(--item-sheet-toggle-slider-enabled-colour); + --slider-unchecked-colour: var(--item-sheet-toggle-slider-disabled-colour) } } diff --git a/styles/Apps/PlayerSheet.css b/styles/Apps/PlayerSheet.css index f6a9024..d6704b7 100644 --- a/styles/Apps/PlayerSheet.css +++ b/styles/Apps/PlayerSheet.css @@ -75,7 +75,7 @@ padding: 6px 6px 4px; margin-bottom: 2px; background: var(--item-list-header-background); - color: var(--item-list-header-color); + color: var(--item-list-header-colour); } .item-list { @@ -89,7 +89,7 @@ .item { background: var(--item-card-background); - color: var(--item-card-color); + color: var(--item-card-colour); overflow: hidden; margin-bottom: 0; @@ -99,7 +99,7 @@ align-items: center; gap: 8px; background: var(--item-card-header-background); - color: var(--item-card-header-color); + color: var(--item-card-header-colour); padding: 4px; img { diff --git a/styles/elements/div.css b/styles/elements/div.css index 69ebd5e..b3d1566 100644 --- a/styles/elements/div.css +++ b/styles/elements/div.css @@ -1,9 +1,9 @@ .taf > .window-content div { &.chip { display: inline flex; - color: var(--chip-color); + color: var(--chip-colour); background: var(--chip-background); - border: 1px solid var(--chip-border-color); + border: 1px solid var(--chip-border-colour); border-radius: 4px; .key { @@ -13,7 +13,7 @@ .value { padding: 2px 4px; border-radius: 0 4px 4px 0; - color: var(--chip-value-color); + color: var(--chip-value-colour); background: var(--chip-value-background); } } diff --git a/styles/themes/dark.css b/styles/themes/dark.css index f8b683b..ae7a855 100644 --- a/styles/themes/dark.css +++ b/styles/themes/dark.css @@ -19,32 +19,32 @@ --inventory-input-colour: white; --inventory-input-disabled-colour: gray; --item-list-header-background: #171e26; - --item-list-header-color: white; + --item-list-header-colour: white; --item-card-background: #1d262f; - --item-card-color: white; + --item-card-colour: white; --item-card-header-background: #242d38; - --item-card-header-color: white; + --item-card-header-colour: white; --item-card-header-input-background: #2b3642; --item-card-header-input-colour: white; --item-card-header-disabled-input-colour: gray; /* Item Sheet Variables */ - --item-sheet-color: var(--steel-100); + --item-sheet-colour: var(--steel-100); --item-sheet-background: var(--steel-800); - --item-sheet-divider-color: var(--steel-700); - --item-sheet-input-color: var(--steel-100); + --item-sheet-divider-colour: var(--steel-700); + --item-sheet-input-colour: var(--steel-100); --item-sheet-input-background: var(--steel-650); - --item-sheet-toggle-slider-enabled-color: green; - --item-sheet-toggle-slider-disabled-color: maroon; - --item-sheet-description-menu-color: var(--steel-100); + --item-sheet-toggle-slider-enabled-colour: green; + --item-sheet-toggle-slider-disabled-colour: maroon; + --item-sheet-description-menu-colour: var(--steel-100); --item-sheet-description-menu-background: var(--steel-700); --item-sheet-description-content-background: var(--steel-650); /* Chip Variables */ - --chip-color: #fff7ed; + --chip-colour: #fff7ed; --chip-background: #2b3642; - --chip-value-color: #fff7ed; + --chip-value-colour: #fff7ed; --chip-value-background: #10161d; - --chip-border-color: var(--chip-value-background); + --chip-border-colour: var(--chip-value-background); } diff --git a/styles/themes/light.css b/styles/themes/light.css index cbc2edc..dd45d6b 100644 --- a/styles/themes/light.css +++ b/styles/themes/light.css @@ -8,9 +8,9 @@ --tab-button-hover-bg: var(--color-light-3); /* Chip Variables */ - --chip-color: #18181b; + --chip-colour: #18181b; --chip-background: #fafafa; - --chip-value-color: #18181b; + --chip-value-colour: #18181b; --chip-value-background: #d4d4d8aa; - --chip-border-color: var(--chip-value-background); + --chip-border-colour: var(--chip-value-background); }