forked from dcloudio/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.scss
65 lines (45 loc) · 1.48 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
//
// Variables
// --------------------------------------------------
$namespace: "mui-" !default;
// Type
// --------------------------------------------------
$font-family-default: "Helvetica Neue", Helvetica, sans-serif !default;
$font-size-default: 17px !default;
$font-weight: 500 !default;
$font-weight-light: 400 !default;
$line-height-default: 21px !default;
// Colors
// --------------------------------------------------
// Main theme colors
//blue theme
$primary-color: #007aff !default;
//green theme
//$primary-color: #4cd964 !default;
//$chrome-color: rgba(247,247,247,.98) !default;
$chrome-color: rgb(247,247,247) !default;
// Action colors
$default-color: #929292 !default;
$positive-color: #4cd964 !default;
$negative-color: #dd524d !default;
$warning-color: #f0ad4e !default;
$royal-color: #8a6de9 !default;
$grey-color:#c7c7cc !default;
// Bars
// --------------------------------------------------
$bar-base-height: 44px !default;
$bar-tab-height: 50px !default;
$bar-side-spacing: 10px !default;
// Cards
// --------------------------------------------------
$card-bg: #fff !default;
// Buttons
// --------------------------------------------------
$button-font-size: 14px !default;
// Transitions
// --------------------------------------------------
$timing-fuction: cubic-bezier(.1,.5,.1,1) !default; // Inspired by @c2prods
// Borders
// --------------------------------------------------
$border-default: 1px solid #ddd !default;
$border-radius: 6px !default;