Trudy commited on
Commit
c1acc89
·
1 Parent(s): 5f07a23

other files

Browse files
Files changed (2) hide show
  1. .env.example +1 -0
  2. tailwind.config.js +35 -0
.env.example ADDED
@@ -0,0 +1 @@
 
 
1
+ GEMINI_API_KEY={your_key}
tailwind.config.js ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ fontFamily: {
10
+ sans: ['Google Sans', 'sans-serif'],
11
+ display: ['Google Sans Display', 'sans-serif'],
12
+ },
13
+ colors: {
14
+ gray: {
15
+ 50: '#f9fafb',
16
+ 100: '#f3f4f6',
17
+ 200: '#e5e7eb',
18
+ 300: '#d1d5db',
19
+ 400: '#9ca3af',
20
+ 500: '#6b7280',
21
+ 600: '#4b5563',
22
+ 700: '#374151',
23
+ 800: '#1f2937',
24
+ 900: '#111827',
25
+ 950: '#030712',
26
+ },
27
+ },
28
+ boxShadow: {
29
+ 'soft': '0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03)',
30
+ 'medium': '0 4px 10px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03)',
31
+ },
32
+ },
33
+ },
34
+ plugins: [],
35
+ }