14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
export const themeTokens = {
|
|
color: {
|
|
primary: '#000',
|
|
primaryLight: '#f5f5f5',
|
|
danger: '#d20f39',
|
|
success: '#40a02b',
|
|
warning: '#df8e1d',
|
|
info: '#1e66f5',
|
|
page: '#fff',
|
|
textSecondary: '#737373',
|
|
textDisabled: '#a3a3a3'
|
|
}
|
|
} as const
|