-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2048game-dark-theme.user.css
103 lines (82 loc) · 2.6 KB
/
2048game-dark-theme.user.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* ==UserStyle==
@name 2048game dark theme
@version 20220809.17.57
@namespace userstyles.world/user/sergio9929
@description 2048game dark theme
@author sergio9929 (https://sergio-rodriguez.web.app/)
@license No License
==/UserStyle== */
@-moz-document domain("2048game.com") {
html, body {
background-color: hsl(0 0% 5%);
color: hsl(0 0% 70%);
}
.title a {
color: hsl(220 50% 50%);
}
.side-column {
border: none;
background: hsl(0 0% 5%);
}
.game-container {
background-color: hsl(0 0% 10%)
}
.score-container, .best-container {
background-color: hsl(0 0% 15%);
}
.score-container:after, .best-container:after {
color: hsl(0 0% 100% / 50%);
}
.game-container .game-message.game-won {
color: hsl(0 0% 100%);
background-color: hsl(220 50% 50% / 50%);
}
.game-container .game-message a, .restart-button {
color: hsl(0 0% 100%);
background-color: hsl(180 50% 50%);
}
.grid-cell {
background-color: hsl(0 0% 4%);
}
.tile .tile-inner {
color: hsl(0 0% 100%) !important;
}
.tile.tile-2 .tile-inner {
background-color: hsl(0 0% 15%);
}
.tile.tile-4 .tile-inner {
background-color: hsl(120 10% 20%);
}
.tile.tile-8 .tile-inner {
background-color: hsl(60 50% 30%);
}
.tile.tile-16 .tile-inner {
background-color: hsl(0 40% 25%);
}
.tile.tile-32 .tile-inner {
background-color: hsl(290 20% 30%);
}
.tile.tile-64 .tile-inner {
background-color: hsl(220 50% 40%);
}
.tile.tile-128 .tile-inner {
background-color: hsl(60, 60%, 50%);
box-shadow: 0 0 30px 10px hsl(60 60% 50% / 50%), inset 0 0 0 1px hsl(0 0% 100% / 20%);
}
.tile.tile-256 .tile-inner {
background-color: hsl(15 50% 50%);
box-shadow: 0 0 30px 10px hsl(15 50% 50% / 50%), inset 0 0 0 1px hsl(0 0% 100% / 20%);
}
.tile.tile-512 .tile-inner {
background-color: hsl(320 50% 50%);
box-shadow: 0 0 30px 10px hsl(320 50% 50% / 50%), inset 0 0 0 1px hsl(0 0% 100% / 20%);
}
.tile.tile-1024 .tile-inner {
background-color: hsl(180 50% 50%);
box-shadow: 0 0 30px 10px hsl(180 50% 50% / 50%), inset 0 0 0 1px hsl(0 0% 100% / 20%);
}
.tile.tile-2048 .tile-inner {
background-color: hsl(220 50% 50%);
box-shadow: 0 0 30px 10px hsl(220 50% 50% / 50%), inset 0 0 0 1px hsl(0 0% 100% / 20%);
}
}