15 lines
215 B
JavaScript
15 lines
215 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#4bd6ef',
|
|
secondary: '#4bacef',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|