Spaces:
Sleeping
Sleeping
| 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: { | |
| colors: { | |
| 'primary': '#3490f3', | |
| 'primary-dark': '#2563eb', | |
| 'secondary': '#e7edf4', | |
| 'text': { | |
| 'primary': '#0d141c', | |
| 'secondary': '#49719c' | |
| }, | |
| }, | |
| animation: { | |
| 'fade-in': 'fadeIn 0.3s ease-out forwards', | |
| }, | |
| keyframes: { | |
| fadeIn: { | |
| '0%': { opacity: '0', transform: 'translateY(10px)' }, | |
| '100%': { opacity: '1', transform: 'translateY(0)' }, | |
| }, | |
| }, | |
| typography: { | |
| DEFAULT: { | |
| css: { | |
| maxWidth: 'none', | |
| color: '#0d141c', | |
| a: { | |
| color: '#3490f3', | |
| '&:hover': { | |
| color: '#2563eb', | |
| }, | |
| }, | |
| strong: { | |
| color: '#0d141c', | |
| }, | |
| h1: { | |
| color: '#0d141c', | |
| }, | |
| h2: { | |
| color: '#0d141c', | |
| }, | |
| h3: { | |
| color: '#0d141c', | |
| }, | |
| h4: { | |
| color: '#0d141c', | |
| }, | |
| }, | |
| }, | |
| }, | |
| }, | |
| }, | |
| plugins: [ | |
| require("@tailwindcss/typography"), | |
| ], | |
| }; | |
| export default config; |