theme.config.coffee 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. module.exports = {
  2. version: '1.0.0',
  3. colors: {
  4. primary: {
  5. 50: '#fef2f2', 100: '#fee2e2', 200: '#fecaca', 300: '#fca5a5',
  6. 400: '#f87171', 500: '#ef4444', 600: '#dc2626', 700: '#b91c1c',
  7. 800: '#991b1b', 900: '#7f1d1d'
  8. },
  9. accent: {
  10. 50: '#f0f9ff', 100: '#e0f2fe', 200: '#bae6fd', 300: '#7dd3fc',
  11. 400: '#38bdf8', 500: '#0ea5e9', 600: '#0284c7', 700: '#0369a1',
  12. 800: '#075985', 900: '#0c4a6e'
  13. },
  14. gray: {
  15. 50: '#f9fafb', 100: '#f3f4f6', 200: '#e5e7eb', 300: '#d1d5db',
  16. 400: '#9ca3af', 500: '#6b7280', 600: '#4b5563', 700: '#374151',
  17. 800: '#1f2937', 900: '#111827'
  18. }
  19. },
  20. typography: {
  21. fonts: {
  22. sans: ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif'],
  23. serif: ['ui-serif', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif'],
  24. mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace']
  25. },
  26. sizes: {
  27. xs: '0.75rem',
  28. sm: '0.875rem',
  29. base: '1rem',
  30. lg: '1.125rem',
  31. xl: '1.25rem',
  32. '2xl': '1.5rem',
  33. '3xl': '1.875rem',
  34. '4xl': '2.25rem',
  35. '5xl': '3rem'
  36. },
  37. weights: {
  38. light: 300,
  39. normal: 400,
  40. medium: 500,
  41. semibold: 600,
  42. bold: 700
  43. }
  44. },
  45. breakpoints: {
  46. sm: '640px',
  47. md: '768px',
  48. lg: '1024px',
  49. xl: '1280px',
  50. '2xl': '1536px'
  51. },
  52. spacing: {
  53. 0: '0px',
  54. 1: '0.25rem',
  55. 2: '0.5rem',
  56. 3: '0.75rem',
  57. 4: '1rem',
  58. 5: '1.25rem',
  59. 6: '1.5rem',
  60. 8: '2rem',
  61. 10: '2.5rem',
  62. 12: '3rem',
  63. 16: '4rem',
  64. 20: '5rem',
  65. 24: '6rem',
  66. 32: '8rem'
  67. },
  68. borderRadius: {
  69. none: '0px',
  70. sm: '0.125rem',
  71. default: '0.25rem',
  72. md: '0.375rem',
  73. lg: '0.5rem',
  74. xl: '0.75rem',
  75. '2xl': '1rem',
  76. full: '9999px'
  77. },
  78. shadows: {
  79. sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
  80. default: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
  81. md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
  82. lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
  83. xl: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)'
  84. }
  85. }