-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (31 loc) · 920 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (31 loc) · 920 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
30
31
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
primary: '#b1ffee',
pink: '#FFE0E6',
red: '#FF2D55',
yellow: '#FFF4D9',
orange: '#FFB870',
lightGreen: '#D9F3F0',
green: '#00AF9B',
darkGreen: 'rgb(45 212 191)',
blue: 'rgb(37 99 235)',
},
extend: {
typography: {
DEFAULT: {
css: {
mark: {
backgroundColor: '#b1ffee',
padding: '3px 5px',
borderRadius: '3px',
},
},
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};