forked from fanruan/fineui
windy
3 years ago
5 changed files with 70 additions and 1 deletions
@ -0,0 +1,20 @@ |
|||||||
|
{ |
||||||
|
"@color-primary": "#2C60DB", |
||||||
|
"@color-bi-green-100": "#3FC47B", |
||||||
|
"@color-bi-light-blue-100": "#19B8EA", |
||||||
|
"@color-bi-orange-100": "#FAAA39", |
||||||
|
"@color-bi-red-100": "#E65251", |
||||||
|
"@color-bi-black": "#000A19", |
||||||
|
"@color-bi-light-gray": "#ECEEF3", |
||||||
|
"@color-bi-light-gray-theme-dark": "#292F45", |
||||||
|
"@color-bi-dim-gray": "#2E3A4D", |
||||||
|
"@border-color-disabled": "#E7E8EB", |
||||||
|
"@color-bi-sliver-theme-dark": "363E55", |
||||||
|
|
||||||
|
"@color-bi-background-active-radio": "transparent", |
||||||
|
"@color-bi-background-active-radio-content": "#2C60DB", |
||||||
|
"@color-bi-background-disabled-active-radio-content": "#D0D4DA", |
||||||
|
"@color-bi-background-disabled-active-radio-content-theme-dark": "#606479", |
||||||
|
"@color-bi-background-disabled-active-checkbox-content": "#D0D4DA", |
||||||
|
"@color-bi-background-disabled-active-checkbox-content-theme-dark": "#606479" |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
{ |
||||||
|
"font-color-normal": "#031b4e", |
||||||
|
"font-color-highlight": "#305bd3", |
||||||
|
"font-color-light-gray": "#0d1540", |
||||||
|
"font-color-disabled": "fade(#031b4e, 40)", |
||||||
|
"font-color-light-disabled": "fade(#0d1540, 20)", |
||||||
|
|
||||||
|
"background-color-highlight": "#305bd3", |
||||||
|
"background-color-light-disabled": "fade(#0d1540, 5)", |
||||||
|
|
||||||
|
"border-color-highlight": "#305bd3", |
||||||
|
"border-color-disabled": "#e8eaed" |
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
const merge = require("webpack-merge"); |
||||||
|
|
||||||
|
const dirs = require("./dirs"); |
||||||
|
|
||||||
|
const common = require("./webpack.prod.js"); |
||||||
|
common.entry = {}; |
||||||
|
|
||||||
|
const attachments = require("./attachments"); |
||||||
|
|
||||||
|
module.exports = merge.smart(common, { |
||||||
|
mode: "production", |
||||||
|
entry: { |
||||||
|
[`2.0/${process.env.LESS_FILE_NAME}`]: attachments.bundleCss, |
||||||
|
}, |
||||||
|
|
||||||
|
output: { |
||||||
|
path: dirs.DEST, |
||||||
|
filename: "[name].js", |
||||||
|
}, |
||||||
|
}); |
Loading…
Reference in new issue