mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
24 lines
448 B
SCSS
24 lines
448 B
SCSS
:root,
|
|
:root[data-theme='light'] {
|
|
/* Color Tokens */
|
|
--bolt-background-primary: theme('colors.gray.50');
|
|
}
|
|
|
|
:root,
|
|
:root[data-theme='dark'] {
|
|
/* Color Tokens */
|
|
--bolt-background-primary: theme('colors.gray.50');
|
|
}
|
|
|
|
/*
|
|
* Element Tokens
|
|
*
|
|
* Hierarchy: Element Token -> (Element Token | Color Tokens) -> Primitives
|
|
*/
|
|
:root {
|
|
--header-height: 65px;
|
|
|
|
/* App */
|
|
--bolt-elements-app-backgroundColor: var(--bolt-background-primary);
|
|
}
|