| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | import tailwindCSSTypography from '@tailwindcss/typography'; |
| | import daisyui from 'daisyui'; |
| | import * as daisyColorThemes from 'daisyui/src/theming/themes'; |
| |
|
| | |
| | export default { |
| | content: [ |
| | './index.html', |
| | './src/**/*.{js,ts,jsx,tsx}', |
| | 'node_modules/daisyui/dist/**/*.js', |
| | 'node_modules/react-daisyui/dist/**/*.js', |
| | ], |
| |
|
| | daisyui: { |
| | styled: true, |
| | themes: [ |
| | { |
| | light: { |
| | ...daisyColorThemes['[data-theme=light]'], |
| | 'base-100': '#FFFFFF', |
| | 'base-200': '#F1F4F7', |
| | 'base-300': '#DEE3E9', |
| | primary: '#0064E0', |
| | 'primary-content': '#FFFFFF', |
| | secondary: '#0F191E', |
| | 'secondary-content': '#FFFFFF', |
| | accent: '#6441D2', |
| | 'accent-content': '#FFFFFF', |
| | info: '#009B9B', |
| | 'info-content': '#FFFFFF', |
| | success: '#0F9B14', |
| | 'success-content': '#FFFFFF', |
| | warning: '#FA8719', |
| | 'warning-content': '#FFFFFF', |
| | error: '#C80A28', |
| | 'error-content': '#FFFFFF', |
| |
|
| | '--rounded-box': '0.35rem', |
| | '--rounded-btn': '0.35rem', |
| | '--rounded-badge': '1rem', |
| | }, |
| | }, |
| | 'dark', |
| | ], |
| | }, |
| | theme: { |
| | fontSize: { |
| | xs: ['0.75rem', {lineHeight: '1.5'}], |
| | sm: ['0.875rem', {lineHeight: '1.5'}], |
| | base: ['1rem', {lineHeight: '1.5'}], |
| | lg: ['1.125rem', {lineHeight: '1.2', fontWeight: 500}], |
| | xl: ['1.25rem', {lineHeight: '1.2', fontWeight: 500}], |
| | '2xl': [ |
| | '1.5rem', |
| | {lineHeight: '1.2', fontWeight: 500, letterSpacing: '0.005rem'}, |
| | ], |
| | '3xl': [ |
| | '2.25rem', |
| | {lineHeight: '1.2', fontWeight: 500, letterSpacing: '0.01rem'}, |
| | ], |
| | '4xl': [ |
| | '3rem', |
| | {lineHeight: '1.2', fontWeight: 500, letterSpacing: '0.016rem'}, |
| | ], |
| | '5xl': [ |
| | '4rem', |
| | {lineHeight: '1.2', fontWeight: 400, letterSpacing: '0.016rem'}, |
| | ], |
| | '6xl': [ |
| | '5rem', |
| | {lineHeight: '1.2', fontWeight: 400, letterSpacing: '0.016rem'}, |
| | ], |
| | }, |
| | extend: { |
| | colors: { |
| | graydark: { |
| | 50: '#f1f4f7', |
| | 100: '#DEE3E9', |
| | 200: '#CBD2D9', |
| | 300: '#A7B3BF', |
| | 400: '#8595A4', |
| | 500: '#667788', |
| | 600: '#465A69', |
| | 700: '#343845', |
| | 800: '#1A1C1F', |
| | 900: '#0F191E', |
| | }, |
| | }, |
| | lineHeight: { |
| | tight: 1.2, |
| | }, |
| | backgroundImage: { |
| | dot: 'url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAABdJREFUGBljYGBg+A/FQAoTMGEKDUcRAATwAgFGIXEOAAAAAElFTkSuQmCC)', |
| | }, |
| | keyframes: { |
| | wiggle: { |
| | '0%, 100%': {transform: 'rotate(-3deg)'}, |
| | '50%': {transform: 'rotate(3deg)'}, |
| | }, |
| | }, |
| | animation: { |
| | wiggle: 'wiggle .25s ease-in-out', |
| | }, |
| | typography: { |
| | DEFAULT: { |
| | css: { |
| | maxWidth: '100%', |
| | a: { |
| | textDecoration: 'none', |
| | }, |
| | }, |
| | }, |
| | }, |
| | }, |
| | }, |
| | plugins: [tailwindCSSTypography, daisyui], |
| | }; |
| |
|