-
Notifications
You must be signed in to change notification settings - Fork 41
/
tailwind.config.ts
51 lines (49 loc) · 1005 Bytes
/
tailwind.config.ts
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
43
44
45
46
47
48
49
50
51
import type { Config } from 'tailwindcss'
export default <Partial<Config>>{
content: [
'components/**/*.{vue,js,ts}',
'layouts/**/*.vue',
'pages/**/*.vue',
'composables/**/*.{js,ts}',
'plugins/**/*.{js,ts}',
'App.{js,ts,vue}',
'app.{js,ts,vue}',
'Error.{js,ts,vue}',
'error.{js,ts,vue}',
'content/**/*.md',
],
darkMode: 'class',
theme: {
darkSelector: '.dark',
extend: {
typography: {
DEFAULT: {
css: {
'code::before': { content: '' },
'code::after': { content: '' },
},
},
},
colors: {
primary: '#d8002d',
secondary: '#333',
dark: '#091a28',
elevated: '#dfe8ef',
linkExactActiveClass: '#fd213b',
},
margin: {
'top-bar': '100px',
},
maxWidth: {
'1/4': '25%',
},
},
},
variants: {
backgroundColor: [
],
},
plugins: [
require('@tailwindcss/typography'),
],
}