dlegr250_material_design 0.5.03 → 0.5.04
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e26ede8a2eadf52e81dfe13d5f638ef329f1a786
|
4
|
+
data.tar.gz: c5f4756203b2ca61ec9f457dbd954053f6d3f2d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60529452c1c731825d3a9431db4b76c87905a004cbab1ed0a0e1eec118b06858b8271f033a8ec16eb9924cece4c74ae9a7d9fd3b979a5e560909673df685a21b
|
7
|
+
data.tar.gz: 8f573f324142b07d34e447d80905ea2a084b0480d36c3a79700a85d5a0cdd4b520d71660db633c091f8be74b7ed5cf9ef2113a56cec384b46b6e340076feeb9c
|
@@ -1,3 +1,15 @@
|
|
1
|
+
// Defaults variables that applications can override
|
2
|
+
//----------------------------------------------------------------------
|
3
|
+
|
4
|
+
$body-background-color: #fafafa !default;
|
5
|
+
$color-hover: #f3fefe !default;
|
6
|
+
$color-primary: #2196f3 !default;
|
7
|
+
$color-secondary: #db4437 !default;
|
8
|
+
|
9
|
+
$appbar-title-color: #fff !default;
|
10
|
+
$appbar-subtitle-color: rgba(255, 255, 255, 0.6) !default;
|
11
|
+
$appbar-button-color: #737373 !default;
|
12
|
+
|
1
13
|
// SCSS maps of all colors
|
2
14
|
//----------------------------------------------------------------------
|
3
15
|
|
@@ -321,15 +333,3 @@ $colors: (
|
|
321
333
|
@function color($color-name) {
|
322
334
|
@return map-get($colors, $color-name);
|
323
335
|
}
|
324
|
-
|
325
|
-
// Defaults variables that applications can override
|
326
|
-
//----------------------------------------------------------------------
|
327
|
-
|
328
|
-
$body-background-color: #fafafa !default;
|
329
|
-
$color-hover: #f3fefe !default;
|
330
|
-
$color-primary: #2196f3 !default;
|
331
|
-
$color-secondary: #db4437 !default;
|
332
|
-
|
333
|
-
$appbar-title-color: color("white") !default;
|
334
|
-
$appbar-subtitle-color: color("offwhite") !default;
|
335
|
-
$appbar-button-color: color("icon") !default;
|