BOR_INPUT_PLACEHOLDER / BOR_FOOTER_TEXT / BOR_THEME (+ the indigo.css example theme); authoring guide: frontend/assets/themes/README.md, docs: README 'Customizing the look'.
18 lines
619 B
CSS
18 lines
619 B
CSS
/* Phase 62 example theme — dark indigo/slate.
|
|
Overrides the :root identity palette from styles.css; every
|
|
text/background pair meets WCAG 2.1 AA (>= 4.5:1):
|
|
ink on bg 15.8:1 · ink on surface 14.7:1 · ink-soft on surface 8.3:1
|
|
dark bg ink on brand 6.5:1 · brand-ink on surface 12.0:1.
|
|
Semantic families (accent/ok/err) inherit the built-in theme.
|
|
Load with BOR_THEME=indigo.css (authoring guide: themes/README.md). */
|
|
:root {
|
|
--bg: #0a0e1a;
|
|
--surface: #111726;
|
|
--ink: #e6e9f0;
|
|
--ink-soft: #a8b0c8;
|
|
--line: #232c44;
|
|
--brand: #818cf8;
|
|
--brand-soft: #1a1f38;
|
|
--brand-ink: #c7d2fe;
|
|
}
|