aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: b7466c613bf6a0e4322502098914046190245a90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/** @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"
            },
            screens: {
                "ms": "320px",
                "mm": "375px",
                "ml": "425px",
                "tb": "768px",
                "lp": "1024px",
                "ll": "1440px",
                "4k": "2560px"
            }
        }
    },
    plugins: [],
}