Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@setoelkahfi
/
streetcut
streetcut
/
tailwind.config.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
14 lines
293 Bytes
Copy permalink
Copy
Raw
1
/** @type {import('tailwindcss').Config} */
2
export
default
{
3
content
:
[
"
./index.html
"
,
"
./src/**/*.{js,jsx,ts,tsx}
"
],
4
theme
:
{
5
extend
:
{
6
colors
:
{
7
"
cut-red
"
:
"
#E24C3B
"
,
8
"
cut-white
"
:
"
#FBF3EF
"
,
9
"
cut-blue
"
:
"
#0088E0
"
,
10
},
11
},
12
},
13
plugins
:
[],
14
};