forked from Sage-Bionetworks/Synapse-React-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_variables.scss
executable file
·100 lines (84 loc) · 2.5 KB
/
_variables.scss
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
// -----------------------------------------------------------------------------
// This file contains all application-wide Sass variables.
// -----------------------------------------------------------------------------
$gray-dark: #dcdcdc !default;
$gray-light: #f9f9f9 !default;
$background-color-gray: $gray-light !default;
$border-color-gray: $gray-dark !default;
$background-color-gray-light: #fcfcfc !default;
$primary-action-color: rgb(64, 123, 160) !default;
$primary-bgcolor-rgba: rgba(201, 66, 129, 0.03) !default;
$text-color-dark: #1a1c29 !default;
$text-color-disabled: #bbbbbc !default;
$secondary-action-color: rgb(98, 172, 98) !default;
$secondary-action-color-dark: #5660e5 !default;
$gray-formtext: #515359 !default;
$gray-regular: #515359 !default;
$gray-deemphasized: #ababac !default;
$red-error: #b2242a !default;
$red-error2: #c94281 !default;
$bootstrap-4-danger-bg: #f2dede !default;
$bootstrap-4-danger-text-color: rgb(102, 102, 102) !default;
$space-unit: 2.1rem;
$green-affrimative: #35bf7d;
$box-shadow-med: 0 1px 3px rgba(0, 0, 0, 0.5);
$box-shadow-soft: 0 3px 10px rgba(93, 105, 171, 0.1);
$themes: (
drug-upload-tool: (
action-color: #5960a5,
),
contribution-request: (
action-color: rgb(12, 141, 22),
),
);
$primary-action-color-active: adjust-color(
$primary-action-color,
$saturation: 50%,
$lightness: 0%
) !default;
$primary-action-color-900: adjust-color(
$primary-action-color,
$saturation: 24%,
$lightness: -18%
) !default;
$primary-action-color-700: adjust-color(
$primary-action-color,
$saturation: 11%,
$lightness: -8%
) !default;
$primary-action-color-500: adjust-color(
$primary-action-color,
$saturation: 29%,
$lightness: -4%
) !default;
$primary-action-color-300: adjust-color(
$primary-action-color,
$saturation: -3%,
$lightness: 10%
) !default;
$primary-color-palette: (
base: $primary-action-color,
active: $primary-action-color-active,
300: $primary-action-color-300,
500: $primary-action-color-500,
700: $primary-action-color-700,
900: $primary-action-color-900,
) !default;
/// Breakpoints map
/// @prop {String} keys - Keys are identifiers mapped to a given length
/// @prop {Map} values - Values are actual breakpoints expressed in pixels
$breakpoints: (
'small': 320px,
'medium': 768px,
'large': 1024px,
) !default;
// To reset bootstrap button style
%button-reset {
border: 0;
outline: none;
box-shadow: none;
border-radius: 2px;
}
// Form Control
$gray-input-border: 1px solid #f2f2f2;
$input-padding: 12px 13px;