-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
36 lines (36 loc) · 1.42 KB
/
Copy pathtailwind.config.ts
File metadata and controls
36 lines (36 loc) · 1.42 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./lib/**/*.{js,ts,jsx,tsx}',
],
plugins: [],
theme: {
extend: {
colors: {
'80s-black': 'var(--80s-black)',
'80s-cyan': 'var(--80s-cyan)',
'80s-dark-blue': 'var(--80s-dark-blue)',
'80s-dark-gray': 'var(--80s-dark-gray)',
'80s-green': 'var(--80s-green)',
'80s-light-gray': 'var(--80s-light-gray)',
'80s-magenta': 'var(--80s-magenta)',
'80s-neon-pink': 'var(--80s-neon-pink)',
'80s-pink': 'var(--80s-pink)',
'80s-purple': 'var(--80s-purple)',
'80s-white': 'var(--80s-white)',
'80s-yellow': 'var(--80s-yellow)',
'synth-accent': 'var(--synth-accent)',
'synth-bg': 'var(--synth-bg)',
'synth-bg-mid': 'var(--synth-bg-mid)',
'synth-primary': 'var(--synth-primary)',
'synth-secondary': 'var(--synth-secondary)',
'synth-surface': 'var(--synth-surface)',
'synth-tertiary': 'var(--synth-tertiary)',
'synth-text': 'var(--synth-text)',
'synth-text-muted': 'var(--synth-text-muted)',
},
},
},
};