mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
15 lines
165 B
HTML
15 lines
165 B
HTML
<style>
|
|
.light-theme {
|
|
--test: #ff0;
|
|
}
|
|
|
|
.dark-theme {
|
|
--test: #f00;
|
|
}
|
|
|
|
.theme {
|
|
background-color: var(--test);
|
|
padding: 1rem;
|
|
}
|
|
</style>
|