-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (56 loc) · 1.6 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
import { createThemes } from 'tw-colors';
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
// colors: {
// 'white': '#FFFFFF',
// 'black': '#242424',
// 'grey': '#F3F3F3',
// 'dark-grey': '#6B6B6B',
// 'red': '#FF4E4E',
// 'transparent': 'transparent',
// 'twitter': '#1DA1F2',
// 'purple': '#8B46FF'
// },
fontSize: {
'sm': '12px',
'base': '14px',
'xl': '16px',
'2xl': '20px',
'3xl': '28px',
'4xl': '38px',
'5xl': '50px',
},
extend: {
fontFamily: {
inter: ["'Inter'", "sans-serif"],
gelasio: ["'Gelasio'", "serif"]
},
},
},
plugins: [
createThemes({
light: {
'white': '#FFFFFF',
'black': '#242424',
'grey': '#F3F3F3',
'dark-grey': '#6B6B6B',
'red': '#FF4E4E',
'transparent': 'transparent',
'twitter': '#1DA1F2',
'purple': '#8B46FF'
},
dark: {
'white': '#242424',
'black': '#F3F3F3',
'grey': '#2A2A2A',
'dark-grey': '#E7E7E7',
'red': '#991F1f',
'transparent': 'transparent',
'twitter': '#0E71A8',
'purple': '#582C8E'
}
})
],
};