Skip to content

Commit fd4602a

Browse files
authored
added dark theme
1 parent b591985 commit fd4602a

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

Chess-Game/dark.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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 */

Chess-Game/light.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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 */

0 commit comments

Comments
 (0)