-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (34 loc) · 984 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./sections/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
screens: {
ultrathin: '300px',
thin: '400px'
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
bgColor: 'rgb(36,36,36)',
accentColor: 'rgb(255,239,156)',
headingColor: 'rgb(107,114,128)',
navColor: 'rgb(208,210,216)',
cardBGColor: 'rgb(46,46,46)',
cardBorderColor: 'rgb(128,128,128)',
cardButtonColor: 'rgb(87,83,78)',
cardHighlightColor: 'rgb(214,211,209)',
socialIconColor: 'rgb(208,210,216)',
}
},
},
plugins: [],
}