bolt.new/packages/bolt/app/styles/variables.scss

24 lines
448 B
SCSS
Raw Normal View History

2024-07-10 16:44:39 +00:00
: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;
2024-07-10 16:44:39 +00:00
/* App */
--bolt-elements-app-backgroundColor: var(--bolt-background-primary);
}