LPX55 commited on
Commit
5f313a8
·
verified ·
1 Parent(s): f6a5834

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
+ './app/**/*.{js,ts,jsx,tsx,mdx}',
7
+ ],
8
+ theme: {
9
+ extend: {
10
+ colors: {
11
+ tg: {
12
+ bg: '#ffffff',
13
+ secondary: '#2481cc',
14
+ text: '#000000',
15
+ textSecondary: '#707579',
16
+ border: '#dfe1e5',
17
+ link: '#2481cc',
18
+ },
19
+ },
20
+ },
21
+ },
22
+ plugins: [],
23
+ }