-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
75 lines (75 loc) · 1.89 KB
/
Copy pathtailwind.config.js
File metadata and controls
75 lines (75 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: {
50: '#E6F0FF',
100: '#CCE0FF',
200: '#99C2FF',
300: '#66A3FF',
400: '#3385FF',
500: '#00B39F', // Meshery teal
600: '#0080FF',
700: '#0066CC',
800: '#004D99',
900: '#003366',
},
secondary: {
50: '#F0E6FF',
100: '#E0CCFF',
200: '#C299FF',
300: '#A366FF',
400: '#8533FF',
500: '#647881', // Meshery secondary
600: '#6600FF',
700: '#5200CC',
800: '#3D0099',
900: '#290066',
},
accent: {
50: '#FFF5E6',
100: '#FFEACC',
200: '#FFD699',
300: '#FFC166',
400: '#FFAD33',
500: '#00D3A9', // Meshery accent
600: '#FF8C00',
700: '#CC7000',
800: '#995400',
900: '#663800',
},
neutral: {
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827',
},
},
keyframes: {
ring: {
'0%, 100%': { transform: 'rotate(0deg)' },
'25%': { transform: 'rotate(2deg)' },
'75%': { transform: 'rotate(-2deg)' },
},
glow: {
'0%, 100%': { boxShadow: '0 0 10px #00B39F, 0 0 20px #00B39F' },
'50%': { boxShadow: '0 0 15px #00B39F, 0 0 30px #00B39F' },
},
},
animation: {
ring: 'ring 1.2s ease-in-out infinite',
glow: 'glow 2s ease-in-out infinite',
},
},
},
plugins: [],
};