-
Notifications
You must be signed in to change notification settings - Fork 0
/
windi.config.js
42 lines (41 loc) · 889 Bytes
/
windi.config.js
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
32
33
34
35
36
37
38
39
40
41
42
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
theme: {
extend: {
typography: {
DEFAULT: {
css: {
color: '#cbcbcb',
fontFamily: ['Niramit'],
a: {
'color': '#c4d6ff',
'&:hover': {
color: '#c4d6ff',
},
'textDecoration': 'none',
},
h1: {
color: '#fff',
},
h2: {
color: '#fff',
},
h4: {
color: '#d1d1d1',
},
strong: {
color: '#fff',
},
img: {
borderRadius: '5px',
},
},
},
},
},
},
plugins: [
require('windicss/plugin/typography'),
require('windicss/plugin/aspect-ratio'),
],
})