akefin-design-system/preview/comp-tier-badges.html
2026-05-23 11:59:45 +09:00

18 lines
No EOL
762 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../colors_and_type.css">
<link rel="stylesheet" href="_card.css">
<style>
body { padding:28px; display:flex; gap:10px; align-items:center; }
.tier { display:inline-flex; align-items:center; height:20px; padding:0 8px; font-family:"JetBrains Mono",monospace; font-size:10px; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; border:1px solid currentColor; border-radius:2px; }
.t1 { color:#2F7D55; } .t2 { color:#2A6FB0; } .t3 { color:#B5740A; } .t4 { color:#B8362B; }
</style>
</head>
<body>
<span class="tier t1">Rules</span>
<span class="tier t2">LLM</span>
<span class="tier t3">Agent</span>
<span class="tier t4">Unmatched</span>
</body></html>