-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
92 lines (89 loc) · 2.12 KB
/
tailwind.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/** @type {import("tailwindcss").Config} */
module.exports = {
darkMode: 'class',
content: [
`components/**/*.{vue,js}`,
`layouts/**/*.vue`,
`pages/**/*.vue`,
`compatibles/**/*.{js,ts}`,
`plugins/**/*.{js,ts}`,
`App.{js,ts,vue}`,
`app.{js,ts,vue}`,
],
theme: {
extend: {
fontFamily: {
sans: ["'Inter var'", 'caviar-dreams'],
brand: ['caviar-dreams'],
'brand-heading': ['campton-thin'],
'brand-subheading': ['caviar-dreams-bold'],
'brand-body': ['campton-light'],
subheading: ['caviar-dreams-bold'],
heading: ['campton-thin'],
body: ['campton-light'],
},
fontSize: {
xxs: '0.675rem',
},
colors: {
brand: {
50: '#F7F2EE',
100: '#EEE5DD',
200: '#DECCBA',
300: '#CDB398',
400: '#BD9975',
DEFAULT: '#A57C52',
600: '#8A6642',
700: '#674D32',
800: '#453321',
900: '#221A11',
},
secondary: {
50: '#EEF2F7',
100: '#DDE5EE',
200: '#BACCDE',
300: '#98B3CD',
400: '#7599BD',
DEFAULT: '#537FAC',
600: '#42668A',
700: '#324D67',
800: '#213345',
900: '#111A22',
},
grey: {
100: '#999999',
200: '#888888',
300: '#777777',
400: '#666666',
DEFAULT: '#555555',
600: '#444444',
700: '#333333',
800: '#222222',
900: '#111111',
},
body: {
50: '#EBEBEB',
100: '#D6D6D6',
200: '#ADADAD',
300: '#858585',
400: '#5C5C5C',
DEFAULT: '#333333',
600: '#262626',
700: '#1F1F1F',
800: '#141414',
900: '#0A0A0A',
},
},
screens: {
xs: '480px',
},
},
},
plugins: [
require('@headlessui/tailwindcss'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/container-queries'),
require('@tailwindcss/typography'),
],
}