28 lines
444 B
CSS
28 lines
444 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
color: #0f172a;
|
|
background-color: #f3f4f6;
|
|
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background-color: #f3f4f6;
|
|
}
|
|
|
|
.table-header {
|
|
background-color: #0F4C81;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.action-button {
|
|
background-color: #2D9CDB;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.card-surface {
|
|
background-color: #e5e7eb;
|
|
}
|