ba-thesis/tailwind.config.js

28 lines
679 B
JavaScript

module.exports = {
content: [
"./frontend/src/**/*.html",
"./frontend/src/**/*.js",
"./frontend/src/**/*.vue",
],
theme: {
extend: {
fontFamily: {
sans: ["Montserrat", "NotoColorEmoji"],
serif: ["Lora", "NotoColorEmoji"],
mono: ["SourceCodePro", "NotoColorEmoji"],
accent: ["Kanit", "NotoColorEmoji"],
emoji: ["NotoColorEmoji"],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
lightshade: '#eeebed',
lightaccent: '#8C919C',
main: '#1C4F97',
darkaccent: '#B3425C',
darkshade: '#221F2F',
},
},
},
plugins: [],
};