File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed
Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ /* Dark Theme Styles */
2+ html , body {
3+ background-color : # 333 ;
4+ color : # fff ;
5+ }
6+
7+ # turn {
8+ background : # 444 ;
9+ border-color : # 222 ;
10+ }
11+
12+ .turnhighlight {
13+ background : # 5cb85c ;
14+ color : # fff ;
15+ }
16+
17+ .gamecell {
18+ background : # 555 ;
19+ border-color : # 222 ;
20+ }
21+
22+ /* Add any other specific dark theme styles here */
Original file line number Diff line number Diff line change 1+ /* Light Theme Styles */
2+ html , body {
3+ background-color : # fff ;
4+ color : # 333 ;
5+ }
6+
7+ # turn {
8+ background : # fff ;
9+ border-color : # 000 ;
10+ }
11+
12+ .turnhighlight {
13+ background : # 5cb85c ;
14+ color : # fff ;
15+ }
16+
17+ .gamecell {
18+ background : # ccc ;
19+ border-color : # 000 ;
20+ }
21+
22+ /* Add any other specific light theme styles here */
You can’t perform that action at this time.
0 commit comments