-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
84 lines (83 loc) · 1.38 KB
/
tailwind.config.cjs
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
import defaultTheme from 'tailwindcss/defaultTheme';
import colors from 'tailwindcss/colors';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
colors: {
black: '#222',
white: '#fff',
transparent: colors.transparent,
gray: colors.gray,
red: {
DEFAULT: '#f94144',
light: '#fa9d9f'
},
orange: {
DEFAULT: '#f8961e'
// light: '#f7c68b' // I do not use it so far
},
yellow: {
DEFAULT: '#f9c74f',
light: '#fdf1d3'
},
green: {
DEFAULT: '#90be6d',
medium: '#9dcd79',
light: '#e3efda'
},
turquoise: {
DEFAULT: '#4d908e'
},
sea: {
DEFAULT: '#277da1',
light: '#d5dce3'
},
water: {
DEFAULT: '#264653',
light: '#9fb3bc'
},
malt: {
DEFAULT: '#e9c46a',
light: '#eae1cd'
},
hop: {
DEFAULT: '#2a9d8f',
light: '#a7d4cf'
},
yeast: {
DEFAULT: '#f4a261',
light: '#ddccbe'
},
addition: {
DEFAULT: '#e76f51',
light: '#e0c5bf'
}
},
container: {
center: true,
screens: {
sm: '100%',
lg: '1030px',
xl: '1160px'
}
},
fontFamily: {
sans: ['bilo', ...defaultTheme.fontFamily.sans]
},
fontWeight: {
normal: '300',
medium: '400',
bold: '500'
},
extend: {
strokeWidth: {
3: '3px'
},
textUnderlineOffset: {
'-2': '-2px'
}
}
},
plugins: []
};