]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/sass/include/_variables.scss
Merge branch 'develop' into cli-wrapper
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _variables.scss
... / ...
CommitLineData
1$small-view: 800px;
2$mobile-view: 500px;
3
4$main-fonts: 'Source Sans Pro', sans-serif;
5$font-regular: 400;
6$font-semibold: 600;
7$font-bold: 700;
8
9$grey-color: #E5E5E5;
10$grey-hoover-color: #EFEFEF;;
11$orange-color: #F1680D;
12$orange-hoover-color: #F97D46;
13
14$bg-color: #fff;
15$fg-color: #000;
16
17$red: #FF0000;
18$green: #39CC0B;
19
20$grey-actor-name: #777272;
21
22$expanded-horizontal-margins: 150px;
23$not-expanded-horizontal-margins: 30px;
24
25$button-height: 30px;
26
27$header-height: 50px;
28$header-border-color: #e9eff6;
29$search-input-width: 375px;
30
31$menu-background: #000;
32$menu-color: #fff;
33$menu-bottom-color: #C6C6C6;
34$menu-width: 240px;
35$menu-lateral-padding: 26px;
36
37$sub-menu-color: #F7F7F7;
38
39$footer-height: 30px;
40$footer-margin: 30px;
41
42$footer-border-color: $header-border-color;
43
44$video-thumbnail-height: 110px;
45$video-thumbnail-width: 200px;
46
47$theater-bottom-space: 115px;
48
49$input-background-color: $bg-color;
50$input-placeholder-color: #898989;
51
52/*** map theme ***/
53
54// pass variables into a sass map,
55// to be warned of non-existing variables
56$variables: (
57 --mainColor: var(--mainColor),
58 --mainHoverColor: var(--mainHoverColor),
59 --mainBackgroundColor: var(--mainBackgroundColor),
60 --mainForegroundColor: var(--mainForegroundColor),
61 --menuBackgroundColor: var(--menuBackgroundColor),
62 --menuForegroundColor: var(--menuForegroundColor),
63 --submenuColor: var(--submenuColor),
64 --inputColor: var(--inputColor),
65 --inputPlaceholderColor: var(--inputPlaceholderColor)
66);
67
68/*** theme helper ***/
69
70@function var($variable) {
71 @return map-get($variables, $variable);
72}