42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['var(--font-inter)'],
|
|
mono: ['var(--font-roboto-mono)'],
|
|
},
|
|
colors: {
|
|
// Nicked from the vs code version of the theme https://github.com/dracula/visual-studio-code/blob/master/src/dracula.yml
|
|
dracula: {
|
|
'bglighter': '#424450',
|
|
'bglight': '#343746',
|
|
'bg': '#282A36',
|
|
'bg-dark': '#21222C',
|
|
'bg-darker': '#191A21',
|
|
'selection': '#44475A',
|
|
'comment': '#6272A4',
|
|
'cyan': '#8BE9FD',
|
|
'green': '#50FA7B',
|
|
'orange': '#FFB86C',
|
|
'pink': '#FF79C6',
|
|
'purple': '#BD93F9',
|
|
'red': '#FF5555',
|
|
'yellow': '#F1FA8C',
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
require('tailwind-scrollbar')({ nocompatible: true })
|
|
],
|
|
};
|
|
export default config;
|