mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-20 11:27:46 +00:00
89 lines
2.5 KiB
CSS
89 lines
2.5 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 100%;
|
|
--foreground: 224 71.4% 4.1%;
|
|
--card: 0 0% 100%;
|
|
--card-foreground: 224 71.4% 4.1%;
|
|
--popover: 0 0% 100%;
|
|
--popover-foreground: 224 71.4% 4.1%;
|
|
--primary: 209.1 100% 40.8%;
|
|
--primary-foreground: 210 20% 98%;
|
|
--secondary: 220 14.3% 95.9%;
|
|
--secondary-foreground: 220.9 39.3% 11%;
|
|
--muted: 220 14.3% 95.9%;
|
|
--muted-foreground: 220 8.9% 46.1%;
|
|
--accent: 220 14.3% 95.9%;
|
|
--accent-foreground: 220.9 39.3% 11%;
|
|
--destructive: 0 84.2% 60.2%;
|
|
--destructive-foreground: 210 20% 98%;
|
|
--border: 220 13% 91%;
|
|
--input: 220 13% 91%;
|
|
--ring: 209.1 100% 40.8%;
|
|
--radius: 0.5rem;
|
|
--font-family: "Noto Sans", "Noto Sans Arabic", sans-serif !important;
|
|
|
|
/* Khoj Custom Colors */
|
|
--primary-hover: #fee285;
|
|
--frosted-background-color: 20 13% 95%;
|
|
--secondary-background-color: #F7F7F5;
|
|
--secondary-accent: #EDEDED;
|
|
--khoj-orange: #FFE7D1;
|
|
--border-color: #e2e2e2;
|
|
--box-shadow-color: rgba(0, 0, 0, 0.03);
|
|
}
|
|
|
|
.dark {
|
|
--background: 0 0% 14%;
|
|
--foreground: 210 20% 98%;
|
|
--card: 0 0% 14%;
|
|
--card-foreground: 210 20% 98%;
|
|
--popover: 0 0% 14%;
|
|
--popover-foreground: 210 20% 98%;
|
|
--primary: 263.4 70% 50.4%;
|
|
--primary-foreground: 210 20% 98%;
|
|
--secondary: 0 0% 9%;
|
|
--secondary-foreground: 210 20% 98%;
|
|
--muted: 0 0% 9%;
|
|
--muted-foreground: 217.9 10.6% 64.9%;
|
|
--accent: 0 0% 9%;
|
|
--accent-foreground: 210 20% 98%;
|
|
--destructive: 0 62.8% 30.6%;
|
|
--destructive-foreground: 210 20% 98%;
|
|
--border: 0 0% 9%;
|
|
--input: 0 0% 9%;
|
|
--ring: 263.4 70% 50.4%;
|
|
--font-family: "Noto Sans", "Noto Sans Arabic", sans-serif !important;
|
|
--box-shadow-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
|
|
h1 {
|
|
@apply text-4xl font-bold;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-family);
|
|
}
|
|
|
|
pre code.hljs {
|
|
white-space: preserve;
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
}
|
|
}
|