00Boobs00 commited on
Commit
15f47a0
·
verified ·
1 Parent(s): a36b7af

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +20 -0
tailwind.config.js ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ './pages/**/*.{js,ts,jsx,tsx,mdx}',
5
+ './components/**/*.{js,ts,jsx,tsx,mdx}',
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ dolphin: {
11
+ 900: '#0f172a',
12
+ 800: '#1e293b',
13
+ 700: '#334155',
14
+ accent: '#38bdf8',
15
+ }
16
+ }
17
+ },
18
+ },
19
+ plugins: [],
20
+ }