igniteui-theming 6.1.0-beta.2 → 6.1.0

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.
@@ -1 +1 @@
1
- {"light-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#949ea9","surface":"#f8f9fa","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#b6bdc4","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"light-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"dark-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#bdbdbd","surface":"#222222","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"light-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#bdbdbd","surface":"#222222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#9a9da2","surface":"#f8f8fa","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"},"dark-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#c3c3c6","surface":"#1e1f24","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"}}
1
+ {"light-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#949ea9","surface":"#f8f9fa","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#b6bdc4","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"light-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"dark-material-palette":{"primary":"#0099ff","secondary":"#df1b74","gray":"#bdbdbd","surface":"#222222","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"light-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#9e9e9e","surface":"white","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","gray":"#bdbdbd","surface":"#1b1b1b","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#9a9da2","surface":"#f8f8fa","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"},"dark-indigo-palette":{"primary":"#4051b5","secondary":"#4051b5","gray":"#c3c3c6","surface":"#1e1f24","info":"#9b27b0","success":"#689f38","warn":"#f66d1e","error":"#d11a2c"}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "6.1.0-beta.2",
3
+ "version": "6.1.0",
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": {
@@ -12,7 +12,7 @@
12
12
  /// @prop {Color} primary [#0078d4] - The primary color
13
13
  /// @prop {Color} secondary [#2b88d8] - The secondary color
14
14
  /// @prop {Color} gray [#fff] - The gray color
15
- /// @prop {Color} surface [#222] - The surface color
15
+ /// @prop {Color} surface [#1b1b1b] - The surface color
16
16
  /// @prop {Color} info [#1377d5] - The info color
17
17
  /// @prop {Color} success [#107c10] - The success color
18
18
  /// @prop {Color} warn [#797673] - The warn color
@@ -20,7 +20,7 @@
20
20
  $palette: palette(
21
21
  $primary: #0078d4,
22
22
  $secondary: #2b88d8,
23
- $surface: #222,
23
+ $surface: #1b1b1b,
24
24
  $info: #1377d5,
25
25
  $success: #107c10,
26
26
  $warn: #797673,
@@ -34,7 +34,7 @@ $palette: palette(
34
34
  /// @prop {Color} primary [#2b579a] - The primary color
35
35
  /// @prop {Color} secondary [#2b579a] - The secondary color
36
36
  /// @prop {Color} gray [#fff] - The gray color
37
- /// @prop {Color} surface [#222] - The surface color
37
+ /// @prop {Color} surface [#1b1b1b] - The surface color
38
38
  /// @prop {Color} info [#1377d5] - The info color
39
39
  /// @prop {Color} success [#107c10] - The success color
40
40
  /// @prop {Color} warn [#797673] - The warn color
@@ -42,7 +42,7 @@ $palette: palette(
42
42
  $word-palette: palette(
43
43
  $primary: #2b579a,
44
44
  $secondary: #2b579a,
45
- $surface: #222,
45
+ $surface: #1b1b1b,
46
46
  $info: #1377d5,
47
47
  $success: #107c10,
48
48
  $warn: #797673,
@@ -56,7 +56,7 @@ $word-palette: palette(
56
56
  /// @prop {Color} primary [#217346] - The primary color
57
57
  /// @prop {Color} secondary [#217346] - The secondary color
58
58
  /// @prop {Color} gray [#fff] - The gray color
59
- /// @prop {Color} surface [#222] - The surface color
59
+ /// @prop {Color} surface [#1b1b1b] - The surface color
60
60
  /// @prop {Color} info [#1377d5] - The info color
61
61
  /// @prop {Color} success [#107c10] - The success color
62
62
  /// @prop {Color} warn [#797673] - The warn color
@@ -64,7 +64,7 @@ $word-palette: palette(
64
64
  $excel-palette: palette(
65
65
  $primary: #217346,
66
66
  $secondary: #217346,
67
- $surface: #222,
67
+ $surface: #1b1b1b,
68
68
  $info: #1377d5,
69
69
  $success: #107c10,
70
70
  $warn: #797673,