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
|
:root {
/*
* Not great that these are in px, but not sure what else to do.
*/
--app-bar-height: 48px;
--input-row-height: 2rem;
--interface-padding: 16px;
--nav-width: 21rem;
/* coloUrs */
--colour-okay: #6A994E;
--colour-warn: #EBC3BE;
--colour-error: #DE5F55;
/* Header BG (dark) */
--colour-header-bg: rgb(66, 66, 66);
/* Header text (light) */
--colour-header-text: rgb(245, 245, 245);
/* Navbar BG (medium) */
--colour-navbar-bg: rgb(117, 117, 117);
/* Navbar text (light) */
--colour-navbar-text: rgb(224, 224, 224);
/* Input BG (light) */
--colour-input-bg: rgb(224, 224, 224);
/* Input text (dark) */
--colour-input-text: rgb(66, 66, 66);
/* Active channel BG (light) */
--colour-active-channel-bg: rgb(224, 224, 224);
/* MessageRun self BG (medium) */
--colour-message-run-self-bg: rgb(117, 117, 117);
/* MessageRun other BG (medium) */
--colour-message-run-other-bg: rgb(117, 117, 117);
/* Message hover BG (medium-dark) */
--colour-message-hover-bg: rgb(170, 170, 170);
/* Message handle BG (medium-light) */
--colour-message-handle-bg: rgb(224, 224, 224);
/* Message handle text */
--colour-message-handle-text: rgb(170, 170, 170);
/* Navbar active BG */
--colour-navbar-active-bg: rgb(117, 117, 117);
/* Navbar hover BG */
--colour-navbar-hover-bg: rgb(170, 170, 170);
/* MessageRun text */
--colour-message-run-text: rgb(170, 170, 170);
}
|