theia/tailwind.config.js

29 lines
654 B
JavaScript
Raw Normal View History

2024-04-04 22:28:58 +02:00
/** @type {import('tailwindcss').Config} */
2024-05-19 15:56:20 +02:00
const config = {
2024-04-04 22:28:58 +02:00
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
2024-04-19 05:21:10 +02:00
extend: {
2024-04-19 23:32:10 +02:00
// cursor: {
// default: 'url(https://i.stack.imgur.com/UOvLJ.png), default',
// pointer: 'url(https://i.stack.imgur.com/UOvLJ.png), pointer',
// },
2024-04-19 05:21:10 +02:00
},
2024-05-19 15:56:20 +02:00
fontFamily: {
sans: ['Roboto Condensed', 'system-ui', 'sans-serif'],
},
2024-05-20 07:41:37 +02:00
colors: {
...require('tailwindcss/colors'),
turquoise: "#19debb",
"muted-gray": "#97979d",
convo: {
bar: "#656566",
bg: "#252526",
2024-05-20 07:41:37 +02:00
},
},
2024-04-04 22:28:58 +02:00
},
plugins: [],
};
2024-05-19 15:56:20 +02:00
export default config;