Svenson1974 commited on
Commit
9c516c4
·
verified ·
1 Parent(s): d0c924d

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +21 -0
tailwind.config.js ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ "./pages/**/*.{js,ts,jsx,tsx}",
5
+ "./components/**/*.{js,ts,jsx,tsx}",
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ 'marine-blue': '#0a2e38',
11
+ 'marine-teal': '#008080',
12
+ 'marine-gold': '#b8860b',
13
+ 'marine-light': '#e0f7fa',
14
+ },
15
+ fontFamily: {
16
+ sans: ['Inter', 'sans-serif'],
17
+ },
18
+ },
19
+ },
20
+ plugins: [],
21
+ }