Skip to content

Commit

Permalink
feat(classic): enable color system
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This commit enables the new Color System,
which introduces a new way of implementing and customizing the colors.
If the user has customized some of the old color variables like
`$kendo-color-primary`, `$kendo-body-bg`, `$kendo-base-bg`, etc, they
would need to migrate their customizations by following the Migration Guide
which can be found in the Progress Design System Docs.
  • Loading branch information
JoomFX committed Mar 22, 2024
1 parent 7d34a80 commit 831b390
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-green-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-green.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-lavender-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-lavender.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-main-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-main.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-metro-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-metro.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-moonlight.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-opal-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-opal.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-silver-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-silver.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/lib/swatches/classic-uniform.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"kendo-enable-color-system": {
"name": "New color system",
"type": "boolean",
"value": false
"value": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/scss/core/color-system/_swatch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@import "./_palettes.scss";

// Config
$kendo-enable-color-system: false !default;
$kendo-enable-color-system: true !default;

// Colors
$_default-colors: (
Expand Down

0 comments on commit 831b390

Please sign in to comment.