5-4 - convert to next.js
This commit is contained in:
parent
432a72b2f2
commit
a23cb6f09c
32 changed files with 9050 additions and 371 deletions
50
tailwind.config.ts
Normal file
50
tailwind.config.ts
Normal file
|
@ -0,0 +1,50 @@
|
|||
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: {
|
||||
pink: {
|
||||
50: '#FFF0F5',
|
||||
100: '#FFE0EB',
|
||||
200: '#FFB8D9',
|
||||
300: '#FF8AC8',
|
||||
400: '#F45D9E',
|
||||
500: '#D23B80',
|
||||
},
|
||||
sage: {
|
||||
200: '#D4E6D5',
|
||||
300: '#B5D4B7',
|
||||
400: '#8AB68C',
|
||||
500: '#6A9A6C',
|
||||
},
|
||||
cream: {
|
||||
50: '#FFFEF5',
|
||||
100: '#FFF9F0',
|
||||
},
|
||||
},
|
||||
spacing: {
|
||||
'xs': '0.25rem',
|
||||
'sm': '0.5rem',
|
||||
'md': '1rem',
|
||||
'lg': '1.5rem',
|
||||
'xl': '2rem',
|
||||
'xxl': '3rem',
|
||||
},
|
||||
maxWidth: {
|
||||
'container': '1200px',
|
||||
},
|
||||
transitionDuration: {
|
||||
'transition': '200ms',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
||||
export default config
|
Loading…
Add table
Add a link
Reference in a new issue