]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/sass/include/_variables.scss
Update client dependencies
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _variables.scss
... / ...
CommitLineData
1@use 'sass:math';
2
3$small-view: 800px;
4$mobile-view: 500px;
5
6$main-fonts: 'Source Sans Pro', sans-serif;
7$font-regular: 400;
8$font-semibold: 600;
9$font-bold: 700;
10$line-height-normal: 1.2;
11
12$grey-background-color: #E5E5E5;
13$grey-background-hover-color: #EFEFEF;
14$grey-foreground-color: #585858;
15$grey-foreground-hover-color: #303030;
16$grey-button-outline-color: scale-color($grey-foreground-color, $alpha: -95%);
17
18$main-color: hsl(24, 90%, 50%);
19$main-color-lighter: lighten($main-color, 10%);
20$main-color-lightest: lighten($main-color, 40%);
21$main-hover-color: lighten($main-color, 5%);
22
23$secondary-color: hsl(187, 77%, 34%);
24
25$support-button: inherit;
26$support-button-heart: #e83e8c;
27
28$bg-color: #fff;
29$fg-color: #000;
30
31$red: #FF0000;
32$green: #39CC0B;
33
34$grey-actor-name: #777272;
35
36$expanded-horizontal-margins: 150px;
37$not-expanded-horizontal-margins: 30px;
38
39$button-height: 30px;
40
41$header-height: 50px;
42$header-border-color: #e9eff6;
43$search-input-width: 375px;
44
45$menu-background: #000;
46$menu-color: #fff;
47$menu-bottom-color: #C6C6C6;
48$menu-width: 240px;
49$menu-lateral-padding: 26px;
50
51$sub-menu-background-color: #F7F7F7;
52$sub-menu-height: 81px;
53
54$channel-background-color: #f6ede8;
55
56$banner-inverted-ratio: math.div(1, 6);
57
58$max-channels-width: 1200px;
59
60$footer-height: 30px;
61$footer-margin: 30px;
62
63$separator-border-color: rgba(0, 0, 0, 0.1);
64
65$video-miniature-margin-bottom: 15px;
66
67$video-miniature-row-name-font-size: 1.3em;
68$video-miniature-row-mobile-name-font-size: 14px;
69
70$video-miniature-row-info-font-size: 14px;
71$video-miniature-row-mobile-info-font-size: 12px;
72
73$video-thumbnail-height: 153px;
74$video-thumbnail-width: 280px;
75$video-thumbnail-medium-height: 114px;
76$video-thumbnail-medium-width: 201px;
77$video-thumbnail-small-height: 71px;
78$video-thumbnail-small-width: 125px;
79
80$theater-bottom-space: 115px;
81
82$input-foreground-color: $fg-color;
83$input-background-color: $bg-color;
84$input-placeholder-color: #898989;
85
86$textarea-foreground-color: $fg-color;
87$textarea-background-color: $bg-color;
88$markdown-textarea-background-color: $grey-background-hover-color;
89
90$sub-menu-margin-bottom: 30px;
91$sub-menu-margin-bottom-small-view: 10px;
92
93$activated-action-button-color: #000;
94
95$focus-box-shadow-form: 0 0 0 .2rem;
96
97$video-watch-player-factor: math.div(16, 9);
98$video-watch-info-margin-left: 44px;
99
100$primeng-breakpoint: 960px;
101
102/*** map theme ***/
103
104// pass variables into a sass map,
105// to be warned of non-existing variables
106$variables: (
107 --mainColor: var(--mainColor),
108 --mainColorLighter: var(--mainColorLighter),
109 --mainColorLightest: var(--mainColorLightest),
110
111 --mainHoverColor: var(--mainHoverColor),
112
113 --mainBackgroundColor: var(--mainBackgroundColor),
114 --mainForegroundColor: var(--mainForegroundColor),
115
116 --secondaryColor: var(--secondaryColor),
117
118 --greyForegroundColor: var(--greyForegroundColor),
119 --greyBackgroundColor: var(--greyBackgroundColor),
120
121 --menuBackgroundColor: var(--menuBackgroundColor),
122 --menuForegroundColor: var(--menuForegroundColor),
123
124 --submenuBackgroundColor: var(--submenuBackgroundColor),
125 --channelBackgroundColor: var(--channelBackgroundColor),
126
127 --inputForegroundColor: var(--inputForegroundColor),
128 --inputBackgroundColor: var(--inputBackgroundColor),
129 --inputPlaceholderColor: var(--inputPlaceholderColor),
130
131 --textareaForegroundColor: var(--textareaForegroundColor),
132 --textareaBackgroundColor: var(--textareaBackgroundColor),
133 --markdownTextareaBackgroundColor: var(--markdownTextareaBackgroundColor),
134
135 --actionButtonColor: var(--actionButtonColor),
136 --activatedActionButtonColor: var(--activatedActionButtonColor),
137
138 --supportButtonColor: var(--supportButtonColor),
139 --supportButtonBackgroundColor: var(--supportButtonBackgroundColor),
140 --supportButtonHeartColor: var(--supportButtonHeartColor),
141
142 --embedForegroundColor: var(--embedForegroundColor),
143 --embedBigPlayBackgroundColor: var(--embedBigPlayBackgroundColor),
144
145 --horizontalMarginContent: var(--horizontalMarginContent),
146 --videosHorizontalMarginContent: var(--videosHorizontalMarginContent),
147 --mainColWidth: var(--mainColWidth)
148);
149
150// SASS type check our CSS variables
151@function pvar($variable) {
152 @if map-has-key($variables, $variable) {
153 @return map-get($variables, $variable);
154 } @else {
155 @error 'ERROR: Variable #{$variable} does not exist';
156 }
157}
158
159/*** z-index groups ***/
160
161$zindex: (
162 miniature : 10,
163 sub-menu : 12500,
164 overlay : 12550,
165 menu : 12600,
166 search-typeahead: 12650,
167 popover : 13000,
168 tooltip : 14000,
169 loadbar : 15000,
170 modal : 16000,
171 dropdown : 17000,
172 help-popover : 17000,
173 privacymsg : 17500,
174 header : 17500,
175 notification : 18000,
176 hotkeys : 19000
177);
178
179@function z($label) {
180 @return map-get($zindex, $label);
181}