forked from uselinked/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (40 loc) · 817 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
42 lines (40 loc) · 817 Bytes
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./**/*.vue'],
darkMode: 'media',
theme: {
extend: {
colors: {
'linked': {
DEFAULT: '#FF005C',
'50': '#FFB8D1',
'100': '#FFA3C4',
'200': '#FF7AAA',
'300': '#FF5290',
'400': '#FF2976',
'500': '#FF005C',
'600': '#C70048',
'700': '#8F0034',
'800': '#57001F',
'900': '#1F000B'
},
'secondary-black': '#222'
},
spacing: {
'128': '32rem'
}
},
fontFamily: {
'sans': 'Strawford',
'display': 'Strawford',
'body': 'Strawford',
}
},
variants: {
extend: {
},
},
plugins: [
require('@tailwindcss/typography'),
],
}