eubottura commited on
Commit
70a4767
·
verified ·
1 Parent(s): e948590

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +23 -0
tailwind.config.js ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ darkMode: 'class',
8
+ theme: {
9
+ extend: {
10
+ fontFamily: {
11
+ sans: ['Inter', 'sans-serif'],
12
+ },
13
+ colors: {
14
+ slate: {
15
+ 850: '#151e2e',
16
+ 900: '#0f172a',
17
+ 950: '#020617',
18
+ },
19
+ },
20
+ },
21
+ },
22
+ plugins: [],
23
+ }