aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/styles/theme.css
blob: 820f5a5a0cfe7056d00b6ac5b8508c5f1dee1f3c (plain) (blame)
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
:root {
    --ns-primary: #00a8e8;
    --ns-bg: #003459;
    --ns-bg-light-30: rgba(0, 152, 189, 0.3);
    --ns-bg-dark-100: rgba(0, 65, 101, 1.0);
    --ns-bg-dark-50: rgba(0, 65, 101, 0.5);
    --offwhite: #ebe6e6;
}

body {
    /*background-image: url('/assets/images/add_model_background.jpg');*/
    background-color: var(--ns-bg);
}

.bg-light {
    background-color: var(--ns-bg-light-30) !important;
}

.ns-bg-dark-50 {}

.ns-bg-dark-100 {
    background-color: var(--ns-bg-dark-100) !important;
}

a {
    color: var(--ns-primary) !important;
}

.text-offwhite {
    color: var(--offwhite);
}