-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
50 lines (47 loc) · 987 Bytes
/
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
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['"Open Sans"', 'sans-serif'],
serif: ['Vollkorn', 'serif'],
mono: ['Inconsolata', 'monospace']
},
backgroundImage: {
mountain: `url(./images/compressed_mountain.jpg)`
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px'
},
colors: {
/* DARKS PALETTE */
black: '#1F272D',
grey: '#223344',
darker: '#1E2722',
dark: '#282c34',
light: '#3F434C',
lighter: '#3F434C',
white: '#F4F0EB',
/* COLORS PALETTE */
orange: '#FFB528',
beige: '#faf8f0',
brown: '#c6ac8f',
blue: '#7fb4e0',
marine: '#124559',
/* PASTEL PALETTE */
pink: '#ffb3ba',
sand: '#ffdfba',
yellow: '#ffffba',
green: '#baffc9',
ocean: '#bae1ff',
violet: '#cc9af4'
}
}
},
plugins: [require('@tailwindcss/typography')]
};
module.exports = config;