forked from gptscript-ai/tools-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (34 loc) · 925 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
import type { Config } from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'
import typography from '@tailwindcss/typography'
export default <Partial<Config>> {
content: [
'./src/components/**/*.{js,vue,ts}',
'./src/layouts/**/*.vue',
'./src/pages/**/*.vue',
'./src/plugins/**/*.{js,ts}',
'./src/app.vue',
'./src/error.vue',
],
darkMode: 'class',
plugins: [
typography,
],
theme: {
fontFamily: { sans: ['Poppins', ...defaultTheme.fontFamily.sans] },
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
acornblue: '#4f7ef3',
acornpurple: '#380067',
acornteal: '#2ddcec',
acornred: '#ff4044',
acornorange: '#ff7240',
acornyellow: '#fdcc11',
acorngreen: '#06eaa7',
},
fontFamily: { poppins: ['Poppins', 'sans-serif'] },
},
},
}