theme.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. export default {
  2. colors: {
  3. primary: {
  4. DEFAULT: "#2563eb",
  5. container: "#2563eb",
  6. fixed: "#dbeafe",
  7. "fixed-dim": "#bfdbfe",
  8. },
  9. "on-primary": {
  10. DEFAULT: "#ffffff",
  11. container: "#ffffff",
  12. fixed: "#1e3a8a",
  13. "fixed-variant": "#1d4ed8",
  14. },
  15. secondary: {
  16. DEFAULT: "#475569",
  17. container: "#eff6ff",
  18. fixed: "#f8fafc",
  19. "fixed-dim": "#e2e8f0",
  20. },
  21. "on-secondary": {
  22. DEFAULT: "#ffffff",
  23. container: "#2158e8",
  24. fixed: "#334155",
  25. "fixed-variant": "#64748b",
  26. },
  27. tertiary: {
  28. DEFAULT: "#f59e0b",
  29. container: "#fef3c7",
  30. fixed: "#fef3c7",
  31. "fixed-dim": "#fde68a",
  32. },
  33. "on-tertiary": {
  34. DEFAULT: "#ffffff",
  35. container: "#92400e",
  36. fixed: "#92400e",
  37. "fixed-variant": "#b45309",
  38. },
  39. error: {
  40. DEFAULT: "#dc2626",
  41. container: "#fee2e2",
  42. },
  43. "on-error": {
  44. DEFAULT: "#ffffff",
  45. container: "#991b1b",
  46. },
  47. success: {
  48. DEFAULT: "#16a34a",
  49. container: "#dcfce7",
  50. },
  51. "on-success": {
  52. DEFAULT: "#ffffff",
  53. container: "#166534",
  54. },
  55. surface: {
  56. DEFAULT: "#f8fafc",
  57. dim: "#eef2f7",
  58. bright: "#ffffff",
  59. variant: "#f1f5f9",
  60. tint: "#2158e8",
  61. container: {
  62. DEFAULT: "#f1f5f9",
  63. lowest: "#ffffff",
  64. low: "#f8fafc",
  65. high: "#eef2f7",
  66. highest: "#e2e8f0",
  67. },
  68. },
  69. "on-surface": {
  70. DEFAULT: "#0f172a",
  71. variant: "#64748b",
  72. },
  73. outline: {
  74. DEFAULT: "#94a3b8",
  75. variant: "#e2e8f0",
  76. },
  77. line: "#e2e8f0",
  78. background: "#eef2ff",
  79. "on-background": "#0f172a",
  80. card: "#ffffff",
  81. ok: "#16a34a",
  82. warn: "#f59e0b",
  83. danger: "#dc2626",
  84. "inverse-surface": "#0f172a",
  85. "inverse-on-surface": "#f8fafc",
  86. "inverse-primary": "#bfdbfe",
  87. },
  88. borderRadius: {
  89. DEFAULT: "0.5rem",
  90. lg: "0.625rem",
  91. xl: "0.75rem",
  92. "2xl": "0.75rem",
  93. full: "9999px",
  94. },
  95. fontFamily: {
  96. headline: ["System", "PingFang SC", "sans-serif"],
  97. body: ["System", "PingFang SC", "sans-serif"],
  98. label: ["System", "PingFang SC", "sans-serif"],
  99. },
  100. };