-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
66 lines (61 loc) · 1.84 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
62
63
64
65
66
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
// important: true,
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'node_modules/flowbite-react/lib/esm/**/*.js',
],
theme: {
extend: {},
colors: {
'button-rose': '#E6BCB5',
'button-grass': '#E4E3AC',
'button-sky': '#B8C8CB',
'background-tint': '#FAF7F2',
'comfy-bg': '#202020',
'secondary-dirt': '#EDDCC0',
'secondary-pink': '#FFD3B8',
'secondary-grey': '#D9D9D9',
'black-regular': '#000000',
'primary-regular': '#1A56DB',
'primary-dark': '#C76D7E',
black: '#000000',
'grey-regular': '#2D353F',
'bright-charcoal': '#A4C4D2',
...colors,
primary: '#1A56DB',
'gray-300': '#D1D5DB',
},
fontFamily: {
sans: ['"Inter"', 'sans-serif'],
title: ['"Inter"', 'sans-serif'],
},
fontWeight: {
'extra-light': 100,
thin: 200,
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
'extra-bold': 800,
black: 900,
},
screens: {
xs: '320px',
sm: '640px',
// => @media (min-width: 640px) { ... }
md: '768px',
// => @media (min-width: 768px) { ... }
lg: '1024px',
// => @media (min-width: 1024px) { ... }
xl: '1280px',
// => @media (min-width: 1280px) { ... }
'2xl': '1536px',
// => @media (min-width: 1536px) { ... }
},
},
plugins: [require('flowbite/plugin')],
}