Skip to content

Commit cb8a3a1

Browse files
committed
Replace named colors with their corresponding hex value
1 parent 96a0ccd commit cb8a3a1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/css/index.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,41 +8,41 @@ h6 {
88
}
99

1010
table {
11-
border: 5px solid black;
11+
border: 5px solid #000000;
1212
border-collapse: collapse;
1313
}
1414

1515
td {
1616
font-size: 1.8em;
1717
text-align: center;
18-
border: 1px solid black;
18+
border: 1px solid #000000;
1919
width: 45px;
2020
height: 45px;
21-
caret-color: black;
21+
caret-color: #000000;
2222
}
2323

2424
.focused-cell {
2525
background-color: #ddd;
2626
}
2727

2828
td.discovered-num {
29-
color: red;
29+
color: #ff0000;
3030
}
3131

3232
td.box-boundary-row {
33-
border-bottom: 3px solid black;
33+
border-bottom: 3px solid #000000;
3434
}
3535

3636
td.box-boundary-col {
37-
border-right: 3px solid black;
37+
border-right: 3px solid #000000;
3838
}
3939

4040
.status-success {
41-
color: green;
41+
color: #008000;
4242
}
4343

4444
.status-failed {
45-
color: red;
45+
color: #ff0000;
4646
}
4747

4848
button {

0 commit comments

Comments
 (0)