summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/styles/defaults/_bootstrap-defaults.scss
blob: c61500cb632b33e8d046afe92eea943df9744892 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// Color system

$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #e9ecef !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #adb5bd !default;
$gray-600: #6c757d !default;
$gray-700: #495057 !default;
$gray-800: #343a40 !default;
$gray-900: #212529 !default;
$black: #000 !default;

$blue: #007bff !default;
$indigo: #6610f2 !default;
$purple: #6f42c1 !default;
$purple-dim: #6f42c180 !default;
$pink: #a94442 !default;
$red: #dc3545 !default;
$red-dim: #dc354580 !default;
$orange: #fd7e14 !default;
$orange-dim: #fd7e1480 !default;
$yellow: #d48200 !default;
$green: #008a00 !default;
$green-dim: #008a0080 !default;
$teal: #20c997 !default;
$cyan: #17a2b8 !default;
$cyan-dim: #17a2b880 !default;
$barley-white: #fcecba !default;

$primary: #25828e !default;
$primary-500: #2b99a8 !default;
$secondary: #374249 !default;
$success: $green !default;
$info: $primary !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-100 !default;
$dark: $gray-800 !default;

//badges colors
$green-300: #6ec664;
$cyan-300: #009596;
$purple-300: #a18fff;
$light-blue-300: #35caed;
$gold-300: #f4c145;
$light-green-300: #ace12e;

// Extra theme colors.
$accent: $primary !default;
$warning-dark: $orange !default;

$fg-color-over-dark-bg: $white !default;
$fg-hover-color-over-dark-bg: $gray-500 !default;

$theme-colors: (
  'accent': $accent,
  'warning-dark': $warning-dark,
  'primary': $accent,
  'secondary': $secondary,
  'success': $success,
  'info': $info,
  'warning': $warning,
  'danger': $danger,
  'light': $light,
  'dark': $dark
) !default;

// Body
$body-color-bright: $light !default;
$body-bg: $white !default;
$body-color: $gray-900 !default;
$body-bg-alt: $gray-200 !default;
// Health colors.
$health-color-error: $red !default;
$health-color-healthy: $green !default;
$health-color-warning: $yellow !default;
$health-color-warning-800: #9d6d10 !default;

// Chart colors.
$chart-color-red: $red !default;
$chart-color-yellow: #f6d173 !default;
$chart-color-translucent-red: $red-dim !default;
$chart-color-blue: $blue !default;
$chart-color-orange: $orange !default;
$chart-color-translucent-orange: $orange-dim !default;
$chart-color-translucent-green: $green-dim !default;
$chart-color-translucent-cyan: $cyan-dim !default;
$chart-color-yellow: $yellow !default;
$chart-color-green: $green !default;
$chart-color-gray: #ededed !default;
$chart-color-cyan: $primary-500 !default;
$chart-color-light-gray: #f0f0f0 !default;
$chart-color-slight-dark-gray: #d7d7d7 !default;
$chart-color-dark-gray: #afafaf !default;
$chart-color-purple: $purple !default;
$chart-color-translucent-purple: $purple-dim !default;
$chart-color-white: #fff !default;
$chart-color-center-text: #151515 !default;
$chart-color-center-text-description: #72767b !default;
$chart-color-tooltip-background: $black !default;
$chart-danger: #c9190b !default;
$chart-color-strong-blue: #0078c8 !default;
$chart-color-translucent-blue: #0096dc80 !default;
$chart-color-border: #00000020 !default;
$chart-color-translucent-yellow: #ef923472 !default;

// Typography

$font-family-sans-serif: 'Helvetica Neue', Helvetica, Arial, 'Noto Sans', sans-serif,
  'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !default;

// Card

$card-cap-bg: $gray-100 !default;

// Grid

$grid-gutter-width: 30px !default;

// Table

$datatable-divider-color: rgba($black, 0.09) !default;

// Navs

$nav-tabs-margin-bottom: 1rem !default;

// Tooltips

$tooltip-color: $white !default;
$tooltip-bg: $body-color !default;
$tooltip-opacity: 1 !default;

// Misc

$screen-sm-min: 576px !default;
$screen-md-min: 768px !default;
$screen-lg-min: 992px !default;
$screen-xl-min: 1200px !default;
$tree-container-height: 200px !default;

$screen-xs-max: calc(#{$screen-sm-min} - 1px) !default;
$screen-sm-max: calc(#{$screen-md-min} - 1px) !default;
$screen-md-max: calc(#{$screen-lg-min} - 1px) !default;
$screen-lg-max: calc(#{$screen-xl-min} - 1px) !default;

$navbar-height: 43px !default;