|
@@ -1,6 +1,9 @@
|
|
|
// https://github.com/ant-design/ant-design/blob/master/components/style/themes/default.less
|
|
// https://github.com/ant-design/ant-design/blob/master/components/style/themes/default.less
|
|
|
module.exports = {
|
|
module.exports = {
|
|
|
- /** override */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * override
|
|
|
|
|
+ * directly effective
|
|
|
|
|
+ */
|
|
|
// Base Scaffolding Variables
|
|
// Base Scaffolding Variables
|
|
|
'border-radius-base': '2px',
|
|
'border-radius-base': '2px',
|
|
|
|
|
|
|
@@ -10,9 +13,15 @@ module.exports = {
|
|
|
// Border
|
|
// Border
|
|
|
'border-color-base': '#ccc',
|
|
'border-color-base': '#ccc',
|
|
|
|
|
|
|
|
|
|
+ // Checkbox
|
|
|
|
|
+ 'checkbox-color': '#2C82BE',
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
- /** custom */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * custom variavles
|
|
|
|
|
+ * need to be used manually
|
|
|
|
|
+ */
|
|
|
'item-active-bg-color': '#2C82BE',
|
|
'item-active-bg-color': '#2C82BE',
|
|
|
'item-active-color': '#fff',
|
|
'item-active-color': '#fff',
|
|
|
// Layout
|
|
// Layout
|
|
@@ -21,5 +30,10 @@ module.exports = {
|
|
|
|
|
|
|
|
// Tabs
|
|
// Tabs
|
|
|
'tab-background': '#F5FBFE',
|
|
'tab-background': '#F5FBFE',
|
|
|
|
|
+ 'tab-color': '@item-active-bg-color',
|
|
|
'tab-background-active': '@item-active-bg-color',
|
|
'tab-background-active': '@item-active-bg-color',
|
|
|
|
|
+ 'tab-color-active': '#fff',
|
|
|
|
|
+
|
|
|
|
|
+ // Checkbox
|
|
|
|
|
+ 'checkbox-border-radius': '0',
|
|
|
};
|
|
};
|