diff options
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..62d4b27 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,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", + "extra": "#454545", + "primary": "#F7FFF6", + "secondary": "#0A8754" + } + }, + }, + plugins: [], +}
\ No newline at end of file |