gui/packages/ui/tailwind.config.cjs
neil 4e82622828 #34 GettingStarted gui component
* added @tea/ui/ArticleCard component too
2022-12-01 10:02:37 +08:00

31 lines
563 B
JavaScript

/** @type {import('tailwindcss').Config} */
const green = '#00ffd0';
const black = '#1a1a1a';
const white = '#fff';
const gray = '#949494';
const purple = '#8000FF';
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
colors: {
primary: green,
accent: purple,
green,
purple: {
700: purple,
900: '#B076EC'
},
black,
white,
gray
},
extend: {
fontFamily: {
sono: ['sono', 'sans-serif'],
machina: ['pp-neue-machina', 'sans-serif']
}
}
},
plugins: [require('@tailwindcss/line-clamp')]
};