forked from EkaAI-Tech/term
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 797 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 797 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
terminal: {
bg: '#1e1e1e',
text: '#f0f0f0',
command: '#56b6c2',
output: '#dcdcdc',
error: '#e06c75',
llm: '#98c379',
prompt: '#61afef',
border: '#333',
}
},
fontFamily: {
mono: ['Fira Code', 'Courier New', 'monospace'],
},
animation: {
'spin-slow': 'spin 0.8s linear infinite',
'fade-in': 'fadeIn 0.2s ease-in-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
}
}
},
},
plugins: [],
}