summaryrefslogtreecommitdiff
path: root/webcards/styles/themes/colors-base.css
blob: fa2b60efdb865b22c9081b037b572beb2b4a5e63 (plain)
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
* {
    /*  Main  */
    --main-bg: white;
    --main-color: black;

    /*  Server  */
    --server-bg-ok: #0C0;
    --server-bg-loading: #DA0;
    --server-bg-closed: #D00;
    --server-color-ok: white;
    --server-color-loading: white;
    --server-color-closed: white;

    /*  Gui and topbar  */
    --gui-bg-main: #ddd;
    --gui-bg-game: white;
    --gui-color-game: black;
    --gui-shadow-game: gray;

    --top-border: black;
    --top-bg: white;
    --top-bg-button: white;
    --top-bg-button-hover: #ddd;
    --top-bg-button-active: ;
    --top-color-button: black;
    --top-color-button-hover: black;
    --top-color-button-active: black;

    /*  Table  */

    /*  Card defaults  */
    --card-color: black;
    --card-bg: white;
    --card-border: #bbb;
    --card-hover: #0f0;

    --deck-hover: #3ea2ff;

    /*  Input  */
    
    --input-color-text: black;
    --input-color-text-hover: black;
    --input-color-text-active: black;
    --input-bg-text: white;
    --input-bg-text-hover: white;
    --input-bg-text-active: white;
    --input-border-text: #555;
    --input-border-text-hover: black;
    --input-border-text-active: #0084ff;

    --input-color-button: white;
    --input-color-button-hover: white;
    --input-color-button-active: white;
    --input-bg-button: #0084ff;
    --input-bg-button-hover: #3ea2ff;
    --input-bg-button-active:#0056a7;

    --input-bg-bool: white;
    --input-bg-bool-hover: white;
    --input-bg-bool-active: white;
    --input-border-bool: black;
    --input-border-bool-hover: #3ea2ff;
    --input-border-bool-active: black;
    --input-border-bool-true: #0084ff;

    --input-color-select: black;
    --input-color-select-hover: black;
    --input-color-select-active: #555;
    --input-bg-select: white;
    --input-bg-select-hover: white;
    --input-bg-select-active: white;
    --input-border-select: #555;
    --input-border-select-hover: black;
    --input-border-select-active: #0084ff;

    --input-bg-multi: rgba(30, 30, 30, 0.3);
    --input-bg-multi-hover: rgba(200, 200, 200, 0.3);
}