egenn commited on
Commit
46a7d8c
·
1 Parent(s): e667f83
Files changed (1) hide show
  1. www/rtemislive.scss +32 -5
www/rtemislive.scss CHANGED
@@ -1,15 +1,31 @@
1
  /* rtemislive.scss */
2
 
 
 
 
 
 
 
 
 
 
 
3
  // Define your custom colors
4
  // primary color
5
- $light-primary: #1295D8;
6
- $dark-primary: #1295D8;
 
 
7
  $light-primary-rgb: #{red($light-primary)}, #{green($light-primary)}, #{blue($light-primary)};
8
  $dark-primary-rgb: #{red($dark-primary)}, #{green($dark-primary)}, #{blue($dark-primary)};
9
  // info color
10
- $light-info: #E44C9A;
 
 
 
 
 
11
  $light-info-rgb: #{red($light-info)}, #{green($light-info)}, #{blue($light-info)};
12
- $dark-info: #FEB2E0;
13
  $dark-info-rgb: #{red($dark-info)}, #{green($dark-info)}, #{blue($dark-info)};
14
  // tooltip-bg
15
  $light-tooltipbg: #cdcdcd;
@@ -17,6 +33,8 @@ $dark-tooltipbg: #333333;
17
 
18
  // Customize the theme colors
19
  @include color-mode(light) {
 
 
20
  // primary color
21
  --bs-primary: #{$light-primary};
22
  --bs-primary-rgb: #{$light-primary-rgb};
@@ -29,12 +47,17 @@ $dark-tooltipbg: #333333;
29
  // link color
30
  --bs-link-color: #{$light-primary};
31
  --bs-link-color-rgb: #{$light-primary-rgb};
32
-
 
 
 
33
 
34
  --rt-tooltipbg: #{$light-tooltipbg};
35
  }
36
 
37
  @include color-mode(dark) {
 
 
38
  // primary color
39
  --bs-primary: #{$dark-primary};
40
  --bs-primary-rgb: #{$dark-primary-rgb};
@@ -47,6 +70,10 @@ $dark-tooltipbg: #333333;
47
  // link color
48
  --bs-link-color: #{$dark-primary};
49
  --bs-link-color-rgb: #{$dark-primary-rgb};
 
 
 
 
50
 
51
  --rt-tooltipbg: #{$dark-tooltipbg};
52
  }
 
1
  /* rtemislive.scss */
2
 
3
+ // To-do:
4
+ // edit .selectize-dropdown .selected {
5
+ // background-color: #007bc2;
6
+ // color: #ffffff;
7
+ // }
8
+
9
+ // Define background color for light and dark mode
10
+ $light-bg: #efefef;
11
+ $dark-bg: #161616;
12
+
13
  // Define your custom colors
14
  // primary color
15
+ // $light-primary: #1295D8;
16
+ // $dark-primary: #1295D8;
17
+ $light-primary: #16A0AC;
18
+ $dark-primary: #16A0AC;
19
  $light-primary-rgb: #{red($light-primary)}, #{green($light-primary)}, #{blue($light-primary)};
20
  $dark-primary-rgb: #{red($dark-primary)}, #{green($dark-primary)}, #{blue($dark-primary)};
21
  // info color
22
+ // $light-info: #E44C9A;
23
+ // $dark-info: #FEB2E0;
24
+ // $light-info: #C42882;
25
+ // $dark-info: #C42882;
26
+ $light-info: #ff004c;
27
+ $dark-info: #ff004c;
28
  $light-info-rgb: #{red($light-info)}, #{green($light-info)}, #{blue($light-info)};
 
29
  $dark-info-rgb: #{red($dark-info)}, #{green($dark-info)}, #{blue($dark-info)};
30
  // tooltip-bg
31
  $light-tooltipbg: #cdcdcd;
 
33
 
34
  // Customize the theme colors
35
  @include color-mode(light) {
36
+ // background color
37
+ --bs-body-bg: #{$light-bg};
38
  // primary color
39
  --bs-primary: #{$light-primary};
40
  --bs-primary-rgb: #{$light-primary-rgb};
 
47
  // link color
48
  --bs-link-color: #{$light-primary};
49
  --bs-link-color-rgb: #{$light-primary-rgb};
50
+ // dropdown link active bg
51
+ // --bs-dropdown-link-active-bg: #{$light-primary};
52
+ // form select bg
53
+ --bs-select-bg: #{$light-primary};
54
 
55
  --rt-tooltipbg: #{$light-tooltipbg};
56
  }
57
 
58
  @include color-mode(dark) {
59
+ // background color
60
+ --bs-body-bg: #{$dark-bg};
61
  // primary color
62
  --bs-primary: #{$dark-primary};
63
  --bs-primary-rgb: #{$dark-primary-rgb};
 
70
  // link color
71
  --bs-link-color: #{$dark-primary};
72
  --bs-link-color-rgb: #{$dark-primary-rgb};
73
+ // dropdown link active bg
74
+ // --bs-dropdown-link-active-bg: #{$dark-primary};
75
+ // form select bg
76
+ --bs-select-bg: #{$dark-primary};
77
 
78
  --rt-tooltipbg: #{$dark-tooltipbg};
79
  }