We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca4630 commit e72246aCopy full SHA for e72246a
README.md
@@ -1018,18 +1018,26 @@ document.onclick = () => {
1018
};
1019
```
1020
1021
-**src/dark-theme/\_vars**
+**src/dark-theme/\_vars.scss**
1022
1023
```scss
1024
$background: black;
1025
1026
1027
-**src/light-theme/\_vars**
+**src/light-theme/\_vars.scss**
1028
1029
1030
$background: white;
1031
1032
1033
+**src/styles.scss**
1034
+
1035
+```scss
1036
+body {
1037
+ background-color: vars.$background;
1038
+}
1039
+```
1040
1041
**public/index.html**
1042
1043
```html
0 commit comments