diff options
| author | Volpeon <git@volpeon.ink> | 2024-06-25 17:39:03 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2024-06-25 17:39:03 +0200 |
| commit | 4de75e0f305b2cb4a026073440f2bac7c34df817 (patch) | |
| tree | 628f71b6f917bb9357ae14d018149509db655e4e /src/_config.scss | |
| parent | Update (diff) | |
| download | iro-design-4de75e0f305b2cb4a026073440f2bac7c34df817.tar.gz iro-design-4de75e0f305b2cb4a026073440f2bac7c34df817.tar.bz2 iro-design-4de75e0f305b2cb4a026073440f2bac7c34df817.zip | |
Focus indicator style
Diffstat (limited to 'src/_config.scss')
| -rw-r--r-- | src/_config.scss | 85 |
1 files changed, 33 insertions, 52 deletions
diff --git a/src/_config.scss b/src/_config.scss index fd338a9..da97476 100644 --- a/src/_config.scss +++ b/src/_config.scss | |||
| @@ -117,34 +117,6 @@ $theme-light: ( | |||
| 117 | --green: oklch(56% 0.16 150.48) --colors --muted, | 117 | --green: oklch(56% 0.16 150.48) --colors --muted, |
| 118 | --yellow: oklch(56% 0.16 84.08) --colors --muted, | 118 | --yellow: oklch(56% 0.16 84.08) --colors --muted, |
| 119 | ), | 119 | ), |
| 120 | |||
| 121 | --semantic: ( | ||
| 122 | --accent: --blue, | ||
| 123 | --accent-static: --blue-static, | ||
| 124 | --positive: --green, | ||
| 125 | --positive-static: --green-static, | ||
| 126 | --negative: --red, | ||
| 127 | --negative-static: --red-static, | ||
| 128 | --warning: --yellow, | ||
| 129 | --warning-static: --yellow-static, | ||
| 130 | |||
| 131 | --focus: --yellow, | ||
| 132 | --focus-static: --yellow-static, | ||
| 133 | |||
| 134 | --bg-l2: --base --50, | ||
| 135 | --bg-l1: --base --100, | ||
| 136 | --bg-base: --base --200, | ||
| 137 | |||
| 138 | --border-mute: --base --200, | ||
| 139 | --border: --base --300, | ||
| 140 | --border-strong: --base --400, | ||
| 141 | |||
| 142 | --text-disabled: --base --500, | ||
| 143 | --text-mute-more: --base --600, | ||
| 144 | --text-mute: --base --700, | ||
| 145 | --text: --base --800, | ||
| 146 | --heading: --base --900, | ||
| 147 | ), | ||
| 148 | ) !default; | 120 | ) !default; |
| 149 | 121 | ||
| 150 | $theme-dark: ( | 122 | $theme-dark: ( |
| @@ -195,33 +167,42 @@ $theme-dark: ( | |||
| 195 | --green: oklch(56% 0.16 150.48) --colors --muted, | 167 | --green: oklch(56% 0.16 150.48) --colors --muted, |
| 196 | --yellow: oklch(56% 0.16 84.08) --colors --muted, | 168 | --yellow: oklch(56% 0.16 84.08) --colors --muted, |
| 197 | ), | 169 | ), |
| 170 | ) !default; | ||
| 171 | |||
| 172 | $semantic-colors: ( | ||
| 173 | --accent: --blue, | ||
| 174 | --accent-static: --blue-static, | ||
| 175 | --positive: --green, | ||
| 176 | --positive-static: --green-static, | ||
| 177 | --negative: --red, | ||
| 178 | --negative-static: --red-static, | ||
| 179 | --warning: --yellow, | ||
| 180 | --warning-static: --yellow-static, | ||
| 181 | |||
| 182 | --focus-raw: --accent, | ||
| 183 | --focus-static: --accent-static, | ||
| 184 | |||
| 185 | --bg-l2: --base --50, | ||
| 186 | --bg-l1: --base --100, | ||
| 187 | --bg-base: --base --200, | ||
| 198 | 188 | ||
| 199 | --semantic: ( | 189 | --border-mute: --base --200, |
| 200 | --accent: --blue, | 190 | --border: --base --300, |
| 201 | --accent-static: --blue-static, | 191 | --border-strong: --base --400, |
| 202 | --positive: --green, | ||
| 203 | --positive-static: --green-static, | ||
| 204 | --negative: --red, | ||
| 205 | --negative-static: --red-static, | ||
| 206 | --warning: --yellow, | ||
| 207 | --warning-static: --yellow-static, | ||
| 208 | 192 | ||
| 209 | --focus: --yellow, | 193 | --text-disabled: --base --500, |
| 210 | --focus-static: --yellow-static, | 194 | --text-mute-more: --base --600, |
| 195 | --text-mute: --base --700, | ||
| 196 | --text: --base --800, | ||
| 197 | --heading: --base --900, | ||
| 211 | 198 | ||
| 212 | --bg-base: --base --50, | 199 | --focus: ( |
| 213 | --bg-l1: --base --75, | 200 | --outline: --focus-raw --400, |
| 214 | --bg-l2: --base --100, | 201 | --border-mute: --focus-raw --900, |
| 215 | 202 | --border: --focus-raw --1000, | |
| 216 | --border-mute: --base --200, | 203 | --border-text: --focus-raw --1000-text, |
| 217 | --border: --base --300, | 204 | --border-strong: --focus-raw --1100, |
| 218 | --border-strong: --base --400, | 205 | --text: --focus-raw --1100, |
| 219 | |||
| 220 | --text-disabled: --base --500, | ||
| 221 | --text-mute-more: --base --600, | ||
| 222 | --text-mute: --base --700, | ||
| 223 | --text: --base --800, | ||
| 224 | --heading: --base --900, | ||
| 225 | ), | 206 | ), |
| 226 | ) !default; | 207 | ) !default; |
| 227 | 208 | ||
