mirror of
https://github.com/zhigang1992/react.git
synced 2026-02-11 22:32:32 +08:00
23 lines
535 B
JavaScript
23 lines
535 B
JavaScript
/**
|
|
* Just customize what you need, deep merge themes by default.
|
|
*
|
|
* If you are using TypeScript, please use the following type definition.
|
|
* If you are using JavaScript, refer to https://github.com/zeit-ui/react/blob/master/components/styles/themes/default.ts
|
|
*/
|
|
|
|
// import {
|
|
// ZeitUIThemes,
|
|
// ZeitUIThemesPalette,
|
|
// ZeitUIThemesExpressiveness,
|
|
// ZeitUIThemesLayout,
|
|
// ZeitUIThemesFont,
|
|
// } from '@zeit-ui/react'
|
|
|
|
export default {
|
|
palette: {
|
|
success: '#ccc',
|
|
warning: '#ccc',
|
|
error: '#ccc',
|
|
},
|
|
}
|