-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
59 lines (58 loc) · 1.65 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
const heroPatterns = require('tailwindcss-hero-patterns/src/patterns')
const colors = require('tailwindcss/colors')
module.exports = {
content: ['src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
}
},
fontFamily: {
'sans': ['ui-sans-serif', 'system-ui'],
'serif': ['ui-serif', 'Georgia'],
'mono': ['ui-monospace', 'SFMono-Regular'],
'cursive': ['"Permanent Marker"', 'cursive'],
'chalk': ['"Gloria Hallelujah"', 'cursive'],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
indigo: colors.indigo,
gray: colors.zinc,
purple: colors.violet,
red: colors.rose,
blue: colors.blue,
pink: colors.pink,
emerald: colors.emerald,
amber: colors.amber,
green: {
200: '#355e3b',
},
yellow: {
100: '#fef9c3',
200: '#Eedd82', //camp specific
300: '#fde047',
400: '#B8860b', //camp specific
500: '#8B4513', //custom
600: '#A77197', //custom
700: '#5F1E6F', //custom
800: '#92400e',
900: '#78350f'
},
},
heroPatterns: {
topography: heroPatterns.topography,
rain: heroPatterns.rain,
bamboo: heroPatterns.bamboo,
},
heroPatternsShades: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
heroPatternsColors: ['green', 'yellow', 'gray', 'indigo', 'purple'],
},
plugins: [
require('tailwindcss-hero-patterns'),
require('@tailwindcss/typography'),
],
}