File size: 929 Bytes
8f44d6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Define the primary color */
:root {
    --primary-color: #FB2576 !important;
    --secondary-color: #6316DB !important;
}

/* Use the primary color for buttons */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Use the primary color for slider thumbs */
.irs-bar,
.irs-to,
.irs-from,
.irs-slider,
.irs-bar-edge,
.irs-handle {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}


/* Dashboard pill cards links */
.nav.nav-pills.card-header-pills.shiny-tab-input.shiny-bound-input .nav-link {
    color: var(--secondary-color) !important; 
}


/* Dashboard pill cards link active */
.nav.nav-pills.card-header-pills.shiny-tab-input.shiny-bound-input .nav-link.active {
    background-color: var(--primary-color) !important; 
    color: white !important; 
}