Skip to content

Commit e72246a

Browse files
docs: fix
1 parent 4ca4630 commit e72246a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -1018,18 +1018,26 @@ document.onclick = () => {
10181018
};
10191019
```
10201020

1021-
**src/dark-theme/\_vars**
1021+
**src/dark-theme/\_vars.scss**
10221022

10231023
```scss
10241024
$background: black;
10251025
```
10261026

1027-
**src/light-theme/\_vars**
1027+
**src/light-theme/\_vars.scss**
10281028

10291029
```scss
10301030
$background: white;
10311031
```
10321032

1033+
**src/styles.scss**
1034+
1035+
```scss
1036+
body {
1037+
background-color: vars.$background;
1038+
}
1039+
```
1040+
10331041
**public/index.html**
10341042

10351043
```html

0 commit comments

Comments
 (0)