summaryrefslogtreecommitdiff
path: root/src/env/assets/styles/_sila.scss
blob: 249e0b6bb199fcefd1a9ac0277d73e3c4c61cd08 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-ExtraLight.woff2") format("woff2");
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-ExtraLightItalic.woff2")
    format("woff2");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("~@/env/assets/fonts/Inter/Inter-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}

// IBS uses Inter https://github.com/rsms/inter

$font-family-base: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

$dark: #2c405a;

$blue: #0070ff;
$red: #e11717;
$green: #34b233;
$yellow: #f5bd1f;

$primary: $red;
$danger: $red;
$success: $green;
$warning: $yellow;

$dark-hover: #3c506a;

$red-hover: #fc2a2a;
$red-active: #df2323;
$red-disabled: #e17171;
$red-click: #c71414;
$red-shadow: #e1171780;
$red-light-background: #e117170d;

$gray-2: rgb(251, 251, 252);
$gray-5: rgba(26, 62, 91, 0.05);
$gray-5-hover: rgba(20, 39, 53, 0.1);
$gray-10: rgba(26, 62, 91, 0.1);
$gray-20: rgba(26, 62, 92, 0.2);
$gray-30: rgba(26, 62, 91, 0.3);
$gray-light: rgb(232 235 238);
$red-40: rgba(225, 23, 23, 0.4);

$surface-secondary: #f3f4f5;
$on-surface-secondary: #040a0f99;
$on-surface-tretiatry: #040a0f4d;

$text-primary: rgb(12, 28, 41);
$text-secondary: rgba(12, 28, 41, 0.8);
$text-tretiatry: rgba(12, 28, 41, 0.6);
$text-quaternary: rgba(12, 28, 41, 0.3);

$login-page-description-color: rgba(12, 28, 41, 0.6);

$border-radius: 8px;

$loading-color: #c11d1d;
$navbar-color: $dark;
$header-height: 56px;
$navigation-width: 280px;

$brand-primary-dark: rgba(225, 23, 23, 1);
$brand-secondary-dark: rgba(26, 62, 91, 1);
$surface-primary-dark: rgba(18, 25, 31, 1);
$surface-secondary-dark: rgba(12, 28, 41, 1);