-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaz-ui.config.ts
More file actions
31 lines (30 loc) · 951 Bytes
/
Copy pathmaz-ui.config.ts
File metadata and controls
31 lines (30 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { defineConfig } from '@mazui/cli'
export default defineConfig({
outputCssFilePath: './assets/css/maz-ui-variables.css',
theme: {
colors: {
primary: '#000',
secondary: '#d2afff',
info: '#a7ccff',
success: 'hsl(130, 51%, 65%)',
warning: '#f0b100',
danger: '#fb2c36',
bgOverlay: 'hsl(0, 0%, 0% / 30%)',
lightTheme: {
textColor: 'hsl(0, 0%, 85%)',
colorMuted: 'hsla(0, 0%, 0%, 0.54)',
bgColor: 'hsl(0, 0%, 100%)',
},
darkTheme: {
textColor: 'hsl(210, 8%, 14%)',
colorMuted: 'hsla(0, 0%, 100%, 0.54)',
bgColor: 'hsl(235, 16%, 15%)',
},
},
borderColor: 'hsl(220deg 13.04% 90.98%)',
borderWidth: '0.125rem',
borderRadius: '0.5rem',
fontFamily: `system-ui, -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, oxygen,
ubuntu, cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif`,
},
})