igniteui-theming 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json/colors/presets/palettes.json +1 -1
- package/package.json +5 -3
- package/sass/color/_charts.scss +20 -0
- package/sass/color/presets/dark/_bootstrap.scss +13 -0
- package/sass/color/presets/dark/_extra.scss +27 -0
- package/sass/color/presets/dark/_fluent.scss +42 -1
- package/sass/color/presets/dark/_indigo.scss +13 -0
- package/sass/color/presets/dark/_material.scss +13 -0
- package/sass/color/presets/light/_bootstrap.scss +13 -0
- package/sass/color/presets/light/_extra.scss +27 -0
- package/sass/color/presets/light/_fluent.scss +42 -1
- package/sass/color/presets/light/_indigo.scss +13 -0
- package/sass/color/presets/light/_material.scss +13 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#adb5bd","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-green-palette":{"primary":"#09f","secondary":"#72da67","surface":"#222","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-purple-palette":{"primary":"#00b4d6","secondary":"#514590","surface":"#333","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#
|
|
1
|
+
{"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#adb5bd","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-green-palette":{"primary":"#09f","secondary":"#72da67","surface":"#222","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-purple-palette":{"primary":"#00b4d6","secondary":"#514590","surface":"#333","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-word-palette":{"primary":"#2b579a","secondary":"#2b579a","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-excel-palette":{"primary":"#217346","secondary":"#217346","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-indigo-palette":{"primary":"#3f51b5","secondary":"#3f51b5","gray":"hsl(262deg 8% 98%)","surface":"#2a2b2f","info":"#9208bc","success":"#689f38","warn":"#ff9800","error":"#cf1a2b"},"dark-material-palette":{"primary":"#09f","secondary":"#e41c77","surface":"#222","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"light-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#adb5bd","surface":"#f8f9fa","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"light-green-palette":{"primary":"#09f","secondary":"#72da67","surface":"#fff","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"light-purple-palette":{"primary":"#00b4d6","secondary":"#514590","surface":"#fff","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"light-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-fluent-word-palette":{"primary":"#2b579a","secondary":"#2b579a","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-fluent-excel-palette":{"primary":"#217346","secondary":"#217346","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-indigo-palette":{"primary":"#3f51b5","secondary":"#3f51b5","gray":"hsl(236deg 8% 5%)","surface":"#fff","info":"#9208bc","success":"#689f38","warn":"#ff9800","error":"#cf1a2b"},"light-material-palette":{"primary":"#09f","secondary":"#e41c77","surface":"white","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"build:e2e": "sass ./test/e2e/theme.scss ./test/e2e/theme.css",
|
|
15
15
|
"build:json": "node scripts/buildJSON.mjs",
|
|
16
16
|
"lint": "stylelint ./sass",
|
|
17
|
+
"preview:palette": "node scripts/previewPalette.mjs",
|
|
17
18
|
"test": "jest",
|
|
18
19
|
"serve:docs": "npx http-server ./docs"
|
|
19
20
|
},
|
|
@@ -52,16 +53,17 @@
|
|
|
52
53
|
"devDependencies": {
|
|
53
54
|
"globby": "^13.1.2",
|
|
54
55
|
"igniteui-sassdoc-theme": "^1.1.4",
|
|
55
|
-
"sassdoc-plugin-localization": "^1.4.3",
|
|
56
56
|
"jest": "^28.1.1",
|
|
57
|
+
"lunr": "^2.3.9",
|
|
57
58
|
"postcss": "^8.4.14",
|
|
58
59
|
"rimraf": "^3.0.2",
|
|
59
60
|
"sass-export": "^2.1.2",
|
|
60
61
|
"sass-true": "^6.1.0",
|
|
62
|
+
"sassdoc-plugin-localization": "^1.4.3",
|
|
61
63
|
"stylelint": "^14.9.1",
|
|
62
64
|
"stylelint-config-standard-scss": "^4.0.0",
|
|
63
65
|
"stylelint-scss": "^4.2.0",
|
|
64
|
-
"
|
|
66
|
+
"yargs": "^17.6.2"
|
|
65
67
|
},
|
|
66
68
|
"peerDependencies": {
|
|
67
69
|
"sass": "^1.53.0"
|
package/sass/color/_charts.scss
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
/// @group palettes
|
|
3
3
|
/// @type List
|
|
4
4
|
/// @access public
|
|
5
|
+
/// @prop {Color} brush-1 [rgb(157 231 114)]
|
|
6
|
+
/// @prop {Color} brush-2 [rgb(139 91 177)]
|
|
7
|
+
/// @prop {Color} brush-3 [rgb(109 177 255)]
|
|
8
|
+
/// @prop {Color} brush-4 [rgb(154 242 228)]
|
|
9
|
+
/// @prop {Color} brush-5 [rgb(238 88 121)]
|
|
10
|
+
/// @prop {Color} brush-6 [rgb(115 86 86)]
|
|
11
|
+
/// @prop {Color} brush-7 [rgb(247 210 98)]
|
|
12
|
+
/// @prop {Color} brush-8 [rgb(168 168 183)]
|
|
13
|
+
/// @prop {Color} brush-9 [rgb(224 81 169)]
|
|
14
|
+
/// @prop {Color} brush-10 [rgb(248 161 95)]
|
|
5
15
|
$brushes-regular: (
|
|
6
16
|
rgb(157 231 114),
|
|
7
17
|
rgb(139 91 177),
|
|
@@ -19,6 +29,16 @@ $brushes-regular: (
|
|
|
19
29
|
/// @group palettes
|
|
20
30
|
/// @type List
|
|
21
31
|
/// @access public
|
|
32
|
+
/// @prop {Color} brush-1 [rgb(86 180 233)]
|
|
33
|
+
/// @prop {Color} brush-2 [rgb(0 158 115)]
|
|
34
|
+
/// @prop {Color} brush-3 [rgb(240 228 68)]
|
|
35
|
+
/// @prop {Color} brush-4 [rgb(213 94 0)]
|
|
36
|
+
/// @prop {Color} brush-5 [rgb(214 0 254)]
|
|
37
|
+
/// @prop {Color} brush-6 [rgb(0 73 159)]
|
|
38
|
+
/// @prop {Color} brush-7 [rgb(230 159 0)]
|
|
39
|
+
/// @prop {Color} brush-8 [rgb(0 0 0)]
|
|
40
|
+
/// @prop {Color} brush-9 [rgb(132 240 223)]
|
|
41
|
+
/// @prop {Color} brush-10 [rgb(115 86 86)]
|
|
22
42
|
$brushes-color-blind: (
|
|
23
43
|
rgb(86 180 233),
|
|
24
44
|
rgb(0 158 115),
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="dark-bootstrap"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the dark bootstrap palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name dark-bootstrap-palette
|
|
11
|
+
/// @prop {Color} primary [#0d6efd] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#6c757d] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#adb5bd] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#212529] - The surface color
|
|
15
|
+
/// @prop {Color} info [#0dcaf0] - The info color
|
|
16
|
+
/// @prop {Color} success [#198754] - The success color
|
|
17
|
+
/// @prop {Color} warn [#ffc107] - The warn color
|
|
18
|
+
/// @prop {Color} error [#dc3545] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #0d6efd,
|
|
8
21
|
$secondary: #6c757d,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="dark"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the dark green palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name dark-green-palette
|
|
11
|
+
/// @prop {Color} primary [#09f] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#72da67] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#fff] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#222] - The surface color
|
|
15
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
16
|
+
/// @prop {Color} success [#4eb862] - The success color
|
|
17
|
+
/// @prop {Color} warn [#fbb13c] - The warn color
|
|
18
|
+
/// @prop {Color} error [#ff134a] - The error color
|
|
6
19
|
$green-palette: palette(
|
|
7
20
|
$primary: #09f,
|
|
8
21
|
$secondary: #72da67,
|
|
@@ -12,6 +25,20 @@ $green-palette: palette(
|
|
|
12
25
|
$warn: #fbb13c,
|
|
13
26
|
$error: #ff134a,
|
|
14
27
|
);
|
|
28
|
+
|
|
29
|
+
/// Generates the dark purple palette.
|
|
30
|
+
/// @type Map
|
|
31
|
+
/// @access public
|
|
32
|
+
/// @group palettes
|
|
33
|
+
/// @name dark-purple-palette
|
|
34
|
+
/// @prop {Color} primary [#00b4d6] - The primary color
|
|
35
|
+
/// @prop {Color} secondary [#514590] - The secondary color
|
|
36
|
+
/// @prop {Color} gray [#fff] - The gray color
|
|
37
|
+
/// @prop {Color} surface [#333] - The surface color
|
|
38
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
39
|
+
/// @prop {Color} success [#4eb862] - The success color
|
|
40
|
+
/// @prop {Color} warn [#fbb13c] - The warn color
|
|
41
|
+
/// @prop {Color} error [#ff134a] - The error color
|
|
15
42
|
$purple-palette: palette(
|
|
16
43
|
$primary: #00b4d6,
|
|
17
44
|
$secondary: #514590,
|
|
@@ -3,9 +3,22 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="dark-fluent"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the dark fluent palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name dark-fluent-palette
|
|
11
|
+
/// @prop {Color} primary [#0078d4] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#2b88d8] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#fff] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#222] - The surface color
|
|
15
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
16
|
+
/// @prop {Color} success [#107c10] - The success color
|
|
17
|
+
/// @prop {Color} warn [#797673] - The warn color
|
|
18
|
+
/// @prop {Color} error [#a80000] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #0078d4,
|
|
8
|
-
$secondary: #
|
|
21
|
+
$secondary: #2b88d8,
|
|
9
22
|
$surface: #222,
|
|
10
23
|
$info: #1377d5,
|
|
11
24
|
$success: #107c10,
|
|
@@ -13,6 +26,20 @@ $palette: palette(
|
|
|
13
26
|
$error: #a80000,
|
|
14
27
|
$variant: 'fluent'
|
|
15
28
|
);
|
|
29
|
+
|
|
30
|
+
/// Generates the dark fluent word palette.
|
|
31
|
+
/// @type Map
|
|
32
|
+
/// @access public
|
|
33
|
+
/// @group palettes
|
|
34
|
+
/// @name dark-fluent-word-palette
|
|
35
|
+
/// @prop {Color} primary [#2b579a] - The primary color
|
|
36
|
+
/// @prop {Color} secondary [#2b579a] - The secondary color
|
|
37
|
+
/// @prop {Color} gray [#fff] - The gray color
|
|
38
|
+
/// @prop {Color} surface [#222] - The surface color
|
|
39
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
40
|
+
/// @prop {Color} success [#107c10] - The success color
|
|
41
|
+
/// @prop {Color} warn [#797673] - The warn color
|
|
42
|
+
/// @prop {Color} error [#a80000] - The error color
|
|
16
43
|
$word-palette: palette(
|
|
17
44
|
$primary: #2b579a,
|
|
18
45
|
$secondary: #2b579a,
|
|
@@ -23,6 +50,20 @@ $word-palette: palette(
|
|
|
23
50
|
$error: #a80000,
|
|
24
51
|
$variant: 'fluent'
|
|
25
52
|
);
|
|
53
|
+
|
|
54
|
+
/// Generates the dark fluent excel palette.
|
|
55
|
+
/// @type Map
|
|
56
|
+
/// @access public
|
|
57
|
+
/// @group palettes
|
|
58
|
+
/// @name dark-fluent-excel-palette
|
|
59
|
+
/// @prop {Color} primary [#217346] - The primary color
|
|
60
|
+
/// @prop {Color} secondary [#217346] - The secondary color
|
|
61
|
+
/// @prop {Color} gray [#fff] - The gray color
|
|
62
|
+
/// @prop {Color} surface [#222] - The surface color
|
|
63
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
64
|
+
/// @prop {Color} success [#107c10] - The success color
|
|
65
|
+
/// @prop {Color} warn [#797673] - The warn color
|
|
66
|
+
/// @prop {Color} error [#a80000] - The error color
|
|
26
67
|
$excel-palette: palette(
|
|
27
68
|
$primary: #217346,
|
|
28
69
|
$secondary: #217346,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="dark-indigo"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the dark indigo palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name dark-indigo-palette
|
|
11
|
+
/// @prop {Color} primary [#3f51b5] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#3f51b5] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [hsl(262deg 8% 98%)] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#2a2b2f] - The surface color
|
|
15
|
+
/// @prop {Color} info [#9208bc] - The info color
|
|
16
|
+
/// @prop {Color} success [#689f38] - The success color
|
|
17
|
+
/// @prop {Color} warn [#ff9800] - The warn color
|
|
18
|
+
/// @prop {Color} error [#cf1a2b] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #3f51b5,
|
|
8
21
|
$secondary: #3f51b5,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="dark-material"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the dark material palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name dark-material-palette
|
|
11
|
+
/// @prop {Color} primary [#09f] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#e41c77] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#fff] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#222] - The surface color
|
|
15
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
16
|
+
/// @prop {Color} success [#4eb862] - The success color
|
|
17
|
+
/// @prop {Color} warn [#faa419] - The warn color
|
|
18
|
+
/// @prop {Color} error [#ff134a] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #09f,
|
|
8
21
|
$secondary: #e41c77,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="light-bootstrap"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the light bootstrap palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name light-bootstrap-palette
|
|
11
|
+
/// @prop {Color} primary [#0d6efd] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#6c757d] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#adb5bd] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#f8f9fa] - The surface color
|
|
15
|
+
/// @prop {Color} info [#0dcaf0] - The info color
|
|
16
|
+
/// @prop {Color} success [#198754] - The success color
|
|
17
|
+
/// @prop {Color} warn [#ffc107] - The warn color
|
|
18
|
+
/// @prop {Color} error [#dc3545] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #0d6efd,
|
|
8
21
|
$secondary: #6c757d,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="light"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the light green palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name light-green-palette
|
|
11
|
+
/// @prop {Color} primary [#09f] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#72da67] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#000] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#fff] - The surface color
|
|
15
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
16
|
+
/// @prop {Color} success [#4eb862] - The success color
|
|
17
|
+
/// @prop {Color} warn [#fbb13c] - The warn color
|
|
18
|
+
/// @prop {Color} error [#ff134a] - The error color
|
|
6
19
|
$green-palette: palette(
|
|
7
20
|
$primary: #09f,
|
|
8
21
|
$secondary: #72da67,
|
|
@@ -12,6 +25,20 @@ $green-palette: palette(
|
|
|
12
25
|
$warn: #fbb13c,
|
|
13
26
|
$error: #ff134a
|
|
14
27
|
);
|
|
28
|
+
|
|
29
|
+
/// Generates the light purple palette.
|
|
30
|
+
/// @type Map
|
|
31
|
+
/// @access public
|
|
32
|
+
/// @group palettes
|
|
33
|
+
/// @name light-purple-palette
|
|
34
|
+
/// @prop {Color} primary [#00b4d6] - The primary color
|
|
35
|
+
/// @prop {Color} secondary [#514590] - The secondary color
|
|
36
|
+
/// @prop {Color} gray [#000] - The gray color
|
|
37
|
+
/// @prop {Color} surface [#fff] - The surface color
|
|
38
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
39
|
+
/// @prop {Color} success [#4eb862] - The success color
|
|
40
|
+
/// @prop {Color} warn [#fbb13c] - The warn color
|
|
41
|
+
/// @prop {Color} error [#ff134a] - The error color
|
|
15
42
|
$purple-palette: palette(
|
|
16
43
|
$primary: #00b4d6,
|
|
17
44
|
$secondary: #514590,
|
|
@@ -3,9 +3,22 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="light-fluent"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the light fluent palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name light-fluent-palette
|
|
11
|
+
/// @prop {Color} primary [#0078d4] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#2b88d8] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#000] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#fff] - The surface color
|
|
15
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
16
|
+
/// @prop {Color} success [#107c10] - The success color
|
|
17
|
+
/// @prop {Color} warn [#797673] - The warn color
|
|
18
|
+
/// @prop {Color} error [#a80000] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #0078d4,
|
|
8
|
-
$secondary: #
|
|
21
|
+
$secondary: #2b88d8,
|
|
9
22
|
$surface: #fff,
|
|
10
23
|
$info: #1377d5,
|
|
11
24
|
$success: #107c10,
|
|
@@ -13,6 +26,20 @@ $palette: palette(
|
|
|
13
26
|
$error: #a80000,
|
|
14
27
|
$variant: 'fluent'
|
|
15
28
|
);
|
|
29
|
+
|
|
30
|
+
/// Generates the light fluent word palette.
|
|
31
|
+
/// @type Map
|
|
32
|
+
/// @access public
|
|
33
|
+
/// @group palettes
|
|
34
|
+
/// @name light-fluent-word-palette
|
|
35
|
+
/// @prop {Color} primary [#2b579a] - The primary color
|
|
36
|
+
/// @prop {Color} secondary [#2b579a] - The secondary color
|
|
37
|
+
/// @prop {Color} gray [#000] - The gray color
|
|
38
|
+
/// @prop {Color} surface [#fff] - The surface color
|
|
39
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
40
|
+
/// @prop {Color} success [#107c10] - The success color
|
|
41
|
+
/// @prop {Color} warn [#797673] - The warn color
|
|
42
|
+
/// @prop {Color} error [#a80000] - The error color
|
|
16
43
|
$word-palette: palette(
|
|
17
44
|
$primary: #2b579a,
|
|
18
45
|
$secondary: #2b579a,
|
|
@@ -23,6 +50,20 @@ $word-palette: palette(
|
|
|
23
50
|
$error: #a80000,
|
|
24
51
|
$variant: 'fluent'
|
|
25
52
|
);
|
|
53
|
+
|
|
54
|
+
/// Generates the dark green palette.
|
|
55
|
+
/// @type Map
|
|
56
|
+
/// @access public
|
|
57
|
+
/// @group palettes
|
|
58
|
+
/// @name light-fluent-excel-palette
|
|
59
|
+
/// @prop {Color} primary [#217346] - The primary color
|
|
60
|
+
/// @prop {Color} secondary [#217346] - The secondary color
|
|
61
|
+
/// @prop {Color} gray [#000] - The gray color
|
|
62
|
+
/// @prop {Color} surface [#fff] - The surface color
|
|
63
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
64
|
+
/// @prop {Color} success [#107c10] - The success color
|
|
65
|
+
/// @prop {Color} warn [#797673] - The warn color
|
|
66
|
+
/// @prop {Color} error [#a80000] - The error color
|
|
26
67
|
$excel-palette: palette(
|
|
27
68
|
$primary: #217346,
|
|
28
69
|
$secondary: #217346,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="light-indigo"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the light indigo palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name light-indigo-palette
|
|
11
|
+
/// @prop {Color} primary [#3f51b5] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#3f51b5] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [hsl(236deg 8% 5%)] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#fff] - The surface color
|
|
15
|
+
/// @prop {Color} info [#9208bc] - The info color
|
|
16
|
+
/// @prop {Color} success [#689f38] - The success color
|
|
17
|
+
/// @prop {Color} warn [#ff9800] - The warn color
|
|
18
|
+
/// @prop {Color} error [#cf1a2b] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #3f51b5,
|
|
8
21
|
$secondary: #3f51b5,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* @sass-export-section="light-material"
|
|
5
5
|
*/
|
|
6
|
+
/// Generates the light material palette.
|
|
7
|
+
/// @type Map
|
|
8
|
+
/// @access public
|
|
9
|
+
/// @group palettes
|
|
10
|
+
/// @name light-material-palette
|
|
11
|
+
/// @prop {Color} primary [#09f] - The primary color
|
|
12
|
+
/// @prop {Color} secondary [#e41c77] - The secondary color
|
|
13
|
+
/// @prop {Color} gray [#000] - The gray color
|
|
14
|
+
/// @prop {Color} surface [#fff] - The surface color
|
|
15
|
+
/// @prop {Color} info [#1377d5] - The info color
|
|
16
|
+
/// @prop {Color} success [#4eb862] - The success color
|
|
17
|
+
/// @prop {Color} warn [#faa419] - The warn color
|
|
18
|
+
/// @prop {Color} error [#ff134a] - The error color
|
|
6
19
|
$palette: palette(
|
|
7
20
|
$primary: #09f,
|
|
8
21
|
$secondary: #e41c77,
|