16 lines
699 B
CSS
16 lines
699 B
CSS
/* ===========================================
|
|
Design Tokens — TAPOPS (Informatika UNTAN)
|
|
Overrides edo variable names with Tapops palette.
|
|
All document section CSS files inherit from here.
|
|
=========================================== */
|
|
|
|
:root {
|
|
--primary-blue: #003150; /* Tapops navy (was #1b3652) */
|
|
--secondary-gold: #feb401; /* Tapops yellow (was #f7b738) */
|
|
--text-dark: #1e293b; /* slate-800 (was #222) */
|
|
--text-light: #fff;
|
|
--bg-light: #f8fafc; /* slate-50 (was #f4f6f9) */
|
|
--border-color: #e2e8f0; /* slate-200 (was #eaeaea) */
|
|
--shadow: 0 18px 35px rgba(0, 49, 80, 0.08);
|
|
}
|