-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
42 lines (41 loc) · 1.15 KB
/
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
import type { Config } from 'tailwindcss'
const defaultTheme = require('tailwindcss/defaultTheme')
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
minHeight: {
80: '20rem',
},
fontSize: {
'10xl': '8rem',
},
width: {
'1/7': '14.2857143%',
},
colors: {
green: {
DEFAULT: '#25695C',
50: '#E5F6F3',
100: '#CAECE6',
200: '#92D8CB',
300: '#5DC6B3',
400: '#389E8C',
500: '#25695C',
600: '#1D5349',
700: '#174039',
800: '#0F2925',
900: '#081714',
},
},
},
fontFamily: {
sans: ['Source Sans Pro', ...defaultTheme.fontFamily.sans],
system: defaultTheme.fontFamily.sans,
},
},
plugins: [
require('@tailwindcss/forms'),
// ...
],
} satisfies Config