-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
24 lines (23 loc) · 1009 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.{html,js}"],
theme: {
extend: {
colors: {
// Using modern `rgb`
primary: 'rgb(var(--color-primary) / <alpha-value>)',
secondary: 'rgb(var(--color-secondary) / <alpha-value>)',
'active-dimmed': 'rgb(var(--color-active-dimmed) / <alpha-value>)',
accent: 'rgb(var(--color-accent) / <alpha-value>)',
'accent-secondary': 'rgb(var(--color-accent-secondary) / <alpha-value>)',
'action-success': 'rgb(var(--color-action-success) / <alpha-value>)',
'action-warning': 'rgb(var(--color-action-warning) / <alpha-value>)',
'action-danger': 'rgb(var(--color-action-danger) / <alpha-value>)',
'text-primary': 'rgb(var(--color-text-primary) / <alpha-value>)',
'text-dimmed': 'rgb(var(--color-text-dimmed) / <alpha-value>)',
'text-minor': 'rgb(var(--color-text-minor) / <alpha-value>)',
},
}
},
plugins: [],
}