-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdarkMode.css
More file actions
89 lines (74 loc) · 1.69 KB
/
darkMode.css
File metadata and controls
89 lines (74 loc) · 1.69 KB
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
/* Light theme */
:root {
--bg-color: #a0aec0;
/* أسود شفاف */
--bg-color-sec: #7c7f83ad;
/* أسود أفتح بشفافية */
--box-shadow: #ffffff1a;
/* أبيض فاتح (شفاف) */
--border-color: #22222233;
/* أسود شفاف */
--main-text-color: black;
/* أسود */
--text-color: #5f513f;
/* عكس الرمادي #a0aec0 → أقرب بني رمادي */
--text-color-sec: #8e7f69;
/* عكس #718096 */
--loading-color: #0000004d;
/* أسود شفاف */
--card-bg: #000000;
/* أسود */
--card-text: #ffffff;
/* أبيض */
}
#btn-theme {
position: fixed;
right: 10px;
bottom: 14px;
z-index: 10;
background-color: var(--bs-blue);
background-color: var(--text-color-sec);
color: #fff;
}
.total-section,
.cart-table-container,
.cart-table-container tr td,
.cart-header {
background-color: gray !important;
color: white !important;
}
#totalPrice {
background: linear-gradient(45deg, #ff0844, #ffb199);
background-clip: text;
}
* {
border-color: #fff !important;
color: #fff;
}
.cart-header h1 {
color: #fff
}
.cart-header p.subtitle {
color: rgba(255, 255, 255, 0.568) !important;
}
th,
.btn-delete,
.quantity-controls button,
span {
color: #fff !important;
}
div.navbar *,
div.filters-section,
div.filters-section *,
div.product-card {
background-color: var(--bg-color-sec) !important;
color: #fff;
}
#searchInput::placeholder,div.navbar ul li a{
color: #fff !important;
}
p.card-text{
background: linear-gradient(45deg, var(--bg-color), #fff, var(--bg-color-sec));
background-size: 200% 200%;
background-clip: text;
}