-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrex-background.css
82 lines (63 loc) · 1.29 KB
/
rex-background.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
/*Application defined*/
.rex-background-primary{
background-color: rgb(71, 190, 185);
}
.rex-background-secondary{
background-color: rgba(71, 190, 184, 0.397);
}
.rex-background-tertiary{
background-color: rgb(71, 190, 185);
}
.rex-background-input{
background-color: rgb(243, 244, 246);
}
.rex-background-custom-1{
background-color: rgb(229, 231, 235);
}
.rex-background-body{
background-color: rgb(244, 245, 255);
}
.rex-background-dashboard-source-indicator{
background-color: rgba(239, 246, 255);
}
/*Default*/
.rex-background-red{
background-color: red;
}
.rex-background-blue{
background-color: blue;
}
.rex-background-green{
background-color: rgb(0, 200, 0);
}
.rex-background-yellow{
background-color: yellow;
}
.rex-background-orange{
background-color: orange;
}
.rex-background-cyan{
background-color: cyan;
}
.rex-background-pink{
background-color: pink;
}
.rex-background-darkgray{
background-color: rgb(100, 100, 100);
}
.rex-background-gray{
background-color: rgb(215, 215, 215);
}
.rex-background-transparent{
background-color: transparent;
}
.rex-background-white{
background-color: white;
}
.rex-background-black{
background-color: black;
}
.rex-selectable-item-background:hover, .rex-item-selected{
background-color: rgba(37, 84, 114, 0.295);
transition: all .3s;
}