| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ['./src/**/*.{html,js,svelte}', './node_modules/stdf/src/**/*.svelte', '../components/**/*.svelte'],
- theme: {
- colors: {
- blue: '#0B24FB',
- yellow: '#FFC043',
- primary: '#0B24FB',
- dark: '#FFC043',
- purple: '#7356BF',
- green: '#05944F',
- orange: '#FF6937',
- primaryBlack: '#09101D',
- black: '#000000',
- gray1: '#23262B',
- gray2: '#2A2B2F',
- gray3: '#303239',
- gray4: '#373940',
- gray5: '#414249',
- gray6: '#747B84',
- gray7: '#DADEE3',
- gray8: '#EBEEF2',
- gray9: '#F4F6F9',
- gray10: '#FAFAFB',
- success: '#11BB8D',
- warning: '#B95000',
- error: '#DA1414',
- info: '#2E5AAC',
- transparent: 'transparent',
- },
- extend: {
- colors: {
- white: '#fff',
- primaryBlack: '#09101D',
- black: '#000000',
- yellow: '#FFC043',
- },
- keyframes: {
- wiggle: {
- '0%, 100%': { transform: 'rotate(-3deg)' },
- '50%': { transform: 'rotate(3deg)' },
- },
- path: {
- '0%': { 'stroke-dashoffset': 400, fill: 'transparent' },
- '30%': { 'stroke-dashoffset': 0, fill: 'transparent' },
- '32%': { 'stroke-dashoffset': 0, fill: 'currentColor' },
- '33%': { opacity: 0 },
- '35%': { opacity: 1 },
- '37%': { opacity: 0 },
- '39%': { opacity: 1 },
- '40%': { 'stroke-dashoffset': 0, fill: 'currentColor' },
- '99%': { 'stroke-dashoffset': 0, fill: 'currentColor' },
- '100%': { 'stroke-dashoffset': 400, fill: 'transparent' },
- },
- },
- animation: {
- wiggle: 'wiggle 1s ease-in-out infinite',
- path: 'path 3s linear infinite',
- },
- },
- },
- darkMode: 'class',
- plugins: [],
- };
|