-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (36 loc) · 952 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./hooks/**/*.{js,ts,jsx,tsx}',
'./contexts/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
primary: { ...colors.pink, DEFAULT: colors.pink['600'] },
secondary: { ...colors.blue, DEFAULT: colors.blue['600'] },
theme: {
black: '#000000',
blue: '#4141FF',
lightblue: '#A2BAFB',
sky: '#E3FFFF',
gray: '#EEEEEE',
white: '#FFFFFF',
},
},
fontFamily: {
mono: ['Monofonto', 'monospace'],
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
],
}