File size: 448 Bytes
6927c07 ab9d59a 6927c07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
: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);
}
|