summaryrefslogtreecommitdiffstats
path: root/src/_config.scss
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2024-06-25 17:39:03 +0200
committerVolpeon <git@volpeon.ink>2024-06-25 17:39:03 +0200
commit4de75e0f305b2cb4a026073440f2bac7c34df817 (patch)
tree628f71b6f917bb9357ae14d018149509db655e4e /src/_config.scss
parentUpdate (diff)
downloadiro-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.scss89
1 files changed, 35 insertions, 54 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;
198 171
199 --semantic: ( 172$semantic-colors: (
200 --accent: --blue, 173 --accent: --blue,
201 --accent-static: --blue-static, 174 --accent-static: --blue-static,
202 --positive: --green, 175 --positive: --green,
203 --positive-static: --green-static, 176 --positive-static: --green-static,
204 --negative: --red, 177 --negative: --red,
205 --negative-static: --red-static, 178 --negative-static: --red-static,
206 --warning: --yellow, 179 --warning: --yellow,
207 --warning-static: --yellow-static, 180 --warning-static: --yellow-static,
208 181
209 --focus: --yellow, 182 --focus-raw: --accent,
210 --focus-static: --yellow-static, 183 --focus-static: --accent-static,
211 184
212 --bg-base: --base --50, 185 --bg-l2: --base --50,
213 --bg-l1: --base --75, 186 --bg-l1: --base --100,
214 --bg-l2: --base --100, 187 --bg-base: --base --200,
215 188
216 --border-mute: --base --200, 189 --border-mute: --base --200,
217 --border: --base --300, 190 --border: --base --300,
218 --border-strong: --base --400, 191 --border-strong: --base --400,
219 192
220 --text-disabled: --base --500, 193 --text-disabled: --base --500,
221 --text-mute-more: --base --600, 194 --text-mute-more: --base --600,
222 --text-mute: --base --700, 195 --text-mute: --base --700,
223 --text: --base --800, 196 --text: --base --800,
224 --heading: --base --900, 197 --heading: --base --900,
198
199 --focus: (
200 --outline: --focus-raw --400,
201 --border-mute: --focus-raw --900,
202 --border: --focus-raw --1000,
203 --border-text: --focus-raw --1000-text,
204 --border-strong: --focus-raw --1100,
205 --text: --focus-raw --1100,
225 ), 206 ),
226) !default; 207) !default;
227 208