aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 6fede2ebec01be53e8850eab7d52d4eb26331824 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** @type {import("tailwindcss").Config} */
export default {
    content: ["./pages/**/*.vue", "./components/**/*.vue", "./layouts/**/*.vue"],
    theme: {
        extend: {
            fontFamily: {
                "outfit": ["Outfit", "sans-serif"],
                "poppins": ["Poppins", "sans-serif"]
            },
            colors: {
                "background": "#121212",
                "sub": "#272727",
                "primary": "#FFFFFF",
                "secondary": "#16A34A",
                "error": "#DC2626"
            }
        },
    },
    plugins: [],
}