mirror of
https://github.com/rustfs/console.git
synced 2026-09-19 01:47:44 +08:00
22 lines
440 B
TypeScript
22 lines
440 B
TypeScript
import type { GlobalThemeOverrides } from "naive-ui";
|
|
|
|
export const themeOverrides: GlobalThemeOverrides = {
|
|
common: {
|
|
primaryColor: '#0396D0',
|
|
primaryColorHover: '#0396D0',
|
|
},
|
|
// Button: {
|
|
// textColorHover: '#0396D0',
|
|
// borderHover: '#0396D0',
|
|
// borderActive: '#0396D0',
|
|
// },
|
|
// Select: {
|
|
// peers: {
|
|
// InternalSelection: {
|
|
// textColor: '#FF0000'
|
|
// }
|
|
// }
|
|
// }
|
|
// ...
|
|
}
|