mohammadSaber26 commited on
Commit
1bcd9dc
·
verified ·
1 Parent(s): 49088b4

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +18 -0
tailwind.config.js ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ './app/**/*.{js,ts,jsx,tsx,mdx}',
7
+ ],
8
+ theme: {
9
+ extend: {
10
+ colors: {
11
+ primary: '#0d6efd',
12
+ secondary: '#198754',
13
+ danger: '#dc3545',
14
+ },
15
+ },
16
+ },
17
+ plugins: [],
18
+ }