-
Notifications
You must be signed in to change notification settings - Fork 5
/
w3-theme-custom.css
83 lines (81 loc) · 1.76 KB
/
w3-theme-custom.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
/*
* this file is for a custom private theme you can create here
* https://www.w3schools.com/w3css/w3css_color_themes.asp
* change the all color and background colors with your theme's color.
*/
.w3-theme-l5 {
color: #000 !important;
background-color: #ffffff !important;
}
.w3-theme-l4 {
color: #000 !important;
background-color: #3996f2 !important;
}
.w3-theme-l3 {
color: #000 !important;
background-color: #f6a6c1 !important;
}
.w3-theme-l2 {
color: #fff !important;
background-color: #3996f2 !important;
}
.w3-theme-l1 {
color: #fff !important;
background-color: #ed4d82 !important;
}
.w3-theme-d1 {
color: #fff !important;
background-color: #d91557 !important;
}
.w3-theme-d2 {
color: #fff !important;
background-color: #c1134d !important;
}
.w3-theme-d3 {
color: #fff !important;
background-color: #a91143 !important;
}
.w3-theme-d4 {
color: #fff !important;
background-color: #910e3a !important;
}
.w3-theme-d5 {
color: #fff !important;
background-color: #000c30 !important;
}
.w3-theme-light {
color: #000 !important;
background-color: #fef2f6 !important;
}
.w3-theme-dark {
color: #fff !important;
background-color: #000c30 !important;
}
.w3-theme-action {
color: #fff !important;
background-color: #790c30 !important;
}
.w3-theme {
color: #fff !important;
background-color: #1976D2 !important;
.w3-text-theme {
color: #e91e63 !important;
}
.w3-border-theme {
border-color: #e91e63 !important;
}
.w3-hover-theme:hover {
color: #fff !important;
background-color: #ffffff !important;
}
.w3-hover-text-theme:hover {
color: #ffffff !important;
}
.w3-hover-border-theme:hover {
border-color: #ffffff !important;
}
/* custom work */
.w3-button:hover {
background-color: #dddddd !important;
color: #290c30 !important;
}