-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.scss
137 lines (118 loc) · 4.02 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
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
// Ionic Variables and Theming. For more info, please see:
// http://ionicframework.com/docs/v2/theming/
$font-path: "../assets/fonts";
@font-face {
font-family: "Lato-Regular";
src: url($font-path+'/Lato-Regular.ttf');
}
@font-face {
font-family: "Lato-Black";
src: url($font-path+'/Lato-Black.ttf');
}
@font-face {
font-family: "Lato-Thin";
src: url($font-path+'/Lato-Thin.ttf');
}
@font-face {
font-family: "Lato-Italic";
src: url($font-path+'/Lato-Italic.ttf');
}
@font-face {
font-family: "Lato-Medium";
src: url($font-path+'/Lato-Medium.ttf');
}
@font-face {
font-family: "Lato-Bold";
src: url($font-path+'/Lato-Bold.ttf');
}
@font-face {
font-family: "Lato-Semibold";
src: url($font-path+'/Lato-Semibold.ttf');
}
@font-face {
font-family: "Lato-Heavy";
src: url($font-path+'/Lato-Heavy.ttf');
}
@import "ionic.globals";
// Named Color Variables
// --------------------------------------------------
// Named colors makes it easy to reuse colors on various components.
// It's highly recommended to change the default colors
// to match your app's branding. Ionic uses a Sass map of
// colors so you can add, rename and remove colors as needed.
// The "primary" color is the only required color in the map.
$colors: (
primary: #00AF64,
primarydark: #016B3E,
secondary: #FFC900,
cancel: #424242,
danger: #E31B48,
dark: #CCCCCC,
light: #DDDDDD,
input: #F7F7F7,
icon: #777777,
cards: #F7F7F7,
card: #FFFFFF,
header: #F7F7F7,
navbar: #EDEDED,
waiting: #CCCCCC,
background: #FFFFFF,
text: #777777,
grey: #777777,
white: #FFFFFF,
black: #000000,
yellow: #FFC900,
orange: #F7921E,
blue: #1553A5,
purple: #603795
);
// Shared Variables
// --------------------------------------------------
// To customize the look and feel of this app, you can override
// the Sass variables found in Ionic's source scss files.
// To view all the possible Ionic variables, see:
// http://ionicframework.com/docs/v2/theming/overriding-ionic-variables/
$background-color: color($colors, background);
$toolbar-text-color: color($colors, text);
$modal-inset-height-small: 90%;
// App Web Variables
// --------------------------------------------------
// Web only Sass variables can go here
$font-family-base: "Lato-Regular", "Roboto", "Helvetica Neue", sans-serif;
// App iOS Variables
// --------------------------------------------------
// iOS only Sass variables can go here
$font-family-ios-base: -apple-system, "Helvetica Neue", "Roboto", sans-serif;
$toolbar-ios-text-color: color($colors, primary);
$toolbar-ios-button-color: color($colors, primary);
$card-ios-background-color: color($colors, card);
// App Material Design Variables
// --------------------------------------------------
// Material Design only Sass variables can go here
$font-family-md-base: "Roboto", "Helvetica Neue", sans-serif;
$toolbar-md-text-color: color($colors, primary);
$toolbar-md-button-color: color($colors, primary);
$card-md-background-color: color($colors, card);
// App Windows Variables
// --------------------------------------------------
// Windows only Sass variables can go here
$font-family-wp-base: "Lato-Regular", "Roboto", "Helvetica Neue", sans-serif;
$toolbar-wp-text-color: color($colors, primary);
$toolbar-wp-button-color: color($colors, primary);
$card-wp-background-color: color($colors, card);
// App Theme
// --------------------------------------------------
// Ionic apps can have different themes applied, which can
// then be future customized. This import comes last
// so that the above variables are used and Ionic's
// default are overridden.
@import "ionic.theme.default";
// Ionicons
// --------------------------------------------------
// The premium icon font for Ionic. For more info, please see:
// http://ionicframework.com/docs/v2/ionicons/
@import "ionic.ionicons";
// Fonts
// --------------------------------------------------
@import "roboto";
@import "noto-sans";