chore: fmt

This commit is contained in:
Michael Abebe
2026-05-12 16:50:18 +03:00
parent 4540d35215
commit 1c5ee19388
181 changed files with 1492 additions and 1100 deletions

View File

@@ -1,24 +1,24 @@
export const colors = {
primary: {
50: '#eff6ff',
100: '#dbeafe',
500: '#3b82f6',
600: '#2563eb',
700: '#1d4ed8',
900: '#1e3a8a',
50: "#eff6ff",
100: "#dbeafe",
500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
900: "#1e3a8a",
},
neutral: {
50: '#f9fafb',
100: '#f3f4f6',
200: '#e5e7eb',
400: '#9ca3af',
600: '#4b5563',
900: '#111827',
50: "#f9fafb",
100: "#f3f4f6",
200: "#e5e7eb",
400: "#9ca3af",
600: "#4b5563",
900: "#111827",
},
success: '#16a34a',
warning: '#f59e0b',
danger: '#dc2626',
info: '#0ea5e9',
success: "#16a34a",
warning: "#f59e0b",
danger: "#dc2626",
info: "#0ea5e9",
} as const;
export type Colors = typeof colors;

View File

@@ -1,2 +1,2 @@
export * from './colors';
export * from './typography';
export * from "./colors";
export * from "./typography";

View File

@@ -4,13 +4,13 @@ export const typography = {
mono: '"Fira Code", "Menlo", monospace',
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
xs: "0.75rem",
sm: "0.875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
},
fontWeight: {
regular: 400,