Madmmike477 commited on
Commit
328fe66
·
verified ·
1 Parent(s): 4f71c47

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +64 -0
tailwind.config.js ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ colors: {
10
+ iron: {
11
+ 900: '#0a0a0f',
12
+ 800: '#12121a',
13
+ 700: '#1a1a25',
14
+ 600: '#252535',
15
+ 500: '#3d3d5c',
16
+ 400: '#5a5a8a',
17
+ 300: '#8a8ab8',
18
+ 200: '#b8b8d8',
19
+ 100: '#e8e8f5',
20
+ },
21
+ electric: {
22
+ 500: '#00f0ff',
23
+ 400: '#33f5ff',
24
+ 300: '#66faff',
25
+ glow: 'rgba(0, 240, 255, 0.5)',
26
+ },
27
+ magma: {
28
+ 500: '#ff3366',
29
+ 400: '#ff5c85',
30
+ glow: 'rgba(255, 51, 102, 0.5)',
31
+ },
32
+ gold: {
33
+ 500: '#ffd700',
34
+ 400: '#ffe033',
35
+ }
36
+ },
37
+ fontFamily: {
38
+ mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
39
+ display: ['Space Grotesk', 'system-ui', 'sans-serif'],
40
+ },
41
+ animation: {
42
+ 'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
43
+ 'glow': 'glow 2s ease-in-out infinite alternate',
44
+ 'float': 'float 6s ease-in-out infinite',
45
+ 'scan': 'scan 3s linear infinite',
46
+ },
47
+ keyframes: {
48
+ glow: {
49
+ '0%': { boxShadow: '0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 15px #00f0ff' },
50
+ '100%': { boxShadow: '0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff' },
51
+ },
52
+ float: {
53
+ '0%, 100%': { transform: 'translateY(0px)' },
54
+ '50%': { transform: 'translateY(-20px)' },
55
+ },
56
+ scan: {
57
+ '0%': { transform: 'translateY(-100%)' },
58
+ '100%': { transform: 'translateY(100%)' },
59
+ },
60
+ },
61
+ },
62
+ },
63
+ plugins: [],
64
+ }