Skip to content

Commit

Permalink
feat(fluent): 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 d6afe2e commit 422ad07
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/fluent/lib/swatches/all.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/fluent/lib/swatches/fluent-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/fluent/scss/core/color-system/_swatch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@forward "./palettes";

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

// Colors
$_default-colors: (
Expand Down
1 change: 0 additions & 1 deletion packages/fluent/scss/input/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
.k-input-button {
color: inherit;
background: none;
border-color: transparent;
}
}
}
Expand Down

0 comments on commit 422ad07

Please sign in to comment.