mirror of
https://github.com/ivabus/gui
synced 2025-04-24 14:37:11 +03:00
23 lines
440 B
JavaScript
23 lines
440 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const primary = '#00ffd0';
|
|
const black = '#1a1a1a';
|
|
const white = '#fff';
|
|
|
|
module.exports = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
colors: {
|
|
primary,
|
|
green: primary,
|
|
black,
|
|
white,
|
|
},
|
|
extend: {
|
|
fontFamily: {
|
|
sono: ['sono', 'sans-serif'],
|
|
machina: ['pp-neue-machina', 'sans-serif']
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|