VigilantRAG / frontend /src /index.css
Aryan
Implement secure onboarding registration, password strength visual meters, hide/show password actions, and multi-tenant document list filtering
e80bf7e
Raw
History Blame Contribute Delete
828 Bytes
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
:root {
--bg-main: #0B0F19;
--bg-card: rgba(17, 24, 39, 0.7);
--border-color: rgba(255, 255, 255, 0.08);
--text-primary: #F3F4F6;
--text-secondary: #9CA3AF;
--accent-blue: #3B82F6;
--accent-purple: #8B5CF6;
--accent-green: #10B981;
--accent-red: #EF4444;
--accent-orange: #F59E0B;
}
body {
margin: 0;
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: var(--bg-main);
color: var(--text-primary);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
/* Custom Scrollbars */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}