-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (29 loc) · 798 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (29 loc) · 798 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'white': 'hsl(0, 0%, 100%)',
'marine-blue': 'hsl(213, 96%, 18%)',
'purplish-blue': 'hsl(243, 100%, 62%)',
'pastel-blue': 'hsl(228, 100%, 84%)',
'light-blue': 'hsl(206, 94%, 87%)',
'strawberry-red': 'hsl(354, 84%, 57%)',
'cool-gray': 'hsl(231, 11%, 63%)',
'light-gray': 'hsl(229, 24%, 87%)',
'magnolia': 'hsl(217, 100%, 97%)',
'alabaster': 'hsl(231, 100%, 99%)',
},
screens: {
'sm': '375px',
'lg': '1440px',
},
},
},
plugins: [],
}