-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
119 lines (118 loc) · 2.63 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const { fontFamily } = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'class',
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
color: theme('colors.black.apple'),
tabSize: '2',
p: {
'line-height': '1.6'
},
a: {
color: theme('colors.blue.DEFAULT'),
},
strong: {
color: theme('colors.pink.DEFAULT')
}
}
}
}),
fontFamily: {
wotfard: ['Wotfard', ...fontFamily.sans]
},
colors: {
blur: {
DEFAULT: 'rgba(255, 255, 255, 0.6)',
dark: 'rgba(29, 29, 31, 0.7)'
},
pixelado: {
pink: '#FA8BFF',
blue: '#2BD2FF',
green: '#2BFF88'
},
black: {
DEFAULT: '#000',
apple: '#111'
},
white: {
DEFAULT: '#ffffff',
apple: '#f5f5f7'
},
pink: {
DEFAULT: 'rgb(255, 45, 85)',
dark: 'rgb(255, 55, 95)'
},
blue: {
DEFAULT: 'rgb(0, 122, 255)',
dark: 'rgb(10, 132, 255)'
},
orange: {
DEFAULT: 'rgb(255, 149, 0)',
dark: 'rgb(255, 159, 10)'
},
gray: {
50: '#F4F5F7',
slight: 'rgba(0, 0, 0, 0.1)',
text: 'rgb(108, 108, 112)',
'text-dark': '#A1A1A6',
DEFAULT: '#F2F2F2',
'slight-dark': 'rgba(255, 255, 255, 0.1)',
dark: '#0d0d0d'
},
yellow: {
DEFAULT: 'rgb(255, 204, 0)',
dark: 'rgb(255, 214, 10)'
},
red: {
DEFAULT: 'rgb(255, 59, 48)',
dark: 'rgb(255, 69, 58)'
},
},
width: {
inherit: 'inherit',
'line': 'calc(98.5% - 80px)',
'17': '4.25rem',
'18': '4.5rem'
},
height: {
'17': '4.25rem',
'18': '4.5rem',
'112': '28rem',
'128': '32rem'
},
fontSize: {
'smsm': '.80rem'
},
backgroundImage: () => ({
wasm: "url('/_assets/icons/wasm-logo.svg')"
}),
transitionProperty: {
'height': 'height, max-height'
},
fontFamily: {
fastyper: ['VT323']
}
},
backdropFilter: {
blur: 'blur(20px) saturate(180%)'
}
},
variants: {
extend: {
height: ['hover']
}
},
plugins: [
require('@tailwindcss/typography'),
require('tailwindcss-filters')
],
purge: {
enabled: true,
content: ['src/**/*.liquid', 'src/**/*.js'],
options: {
}
}
}