1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
| $colors: ( 'slate': ( 50: #f8fafc, 100: #f1f5f9, // ...其他色阶 900: #0f172a ), 'gray': ( 50: #f9fafb, // ...其他色阶 900: #111827 ), // 其他颜色... 'black': #000, 'white': #fff, 'transparent': transparent, 'current': currentColor );
$spacing: ( '0': 0, '1': 0.25rem, '2': 0.5rem, // ...其他间距 '64': 16rem );
$font-sizes: ( 'xs': 0.75rem, 'sm': 0.875rem, 'base': 1rem, 'lg': 1.125rem, // ...其他字号 '9xl': 8rem );
$breakpoints: ( 'sm': 640px, 'md': 768px, 'lg': 1024px, 'xl': 1280px, '2xl': 1536px );
$border-radius: ( 'none': 0, 'sm': 0.125rem, 'DEFAULT': 0.25rem, 'md': 0.375rem, 'lg': 0.5rem, 'xl': 0.75rem, '2xl': 1rem, '3xl': 1.5rem, 'full': 9999px );
$box-shadow: ( 'sm': '0 1px 2px 0 rgb(0 0 0 / 0.05)', 'DEFAULT': '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)', 'md': '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)', // ...其他阴影 'inner': 'inset 0 2px 4px 0 rgb(0 0 0 / 0.05)' );
|