theme.js 2.2 KB

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