/* SPDX-License-Identifier: AGPL-3.0-or-later */
/* Copyright (C) 2024-2026 Philippe Naveau — contact@perfshop.io */
/* PerfShop — JMeter UI — https://perfshop.io */

/**
 * tokens.css — Design system tokens (CSS custom properties).
 *
 * Single source of truth for colors, typography and animation keyframes
 * reused across layout / components / modals modules. Loaded FIRST in the
 * <head> cascade so downstream modules can reference `var(--*)`.
 */

:root {
  --bg:       #0d0d14;
  --surface:  #13131e;
  --surface2: #1c1c2e;
  --border:   #2a2a40;
  --accent:   #667eea;
  --danger:   #ff4757;
  --success:  #2ed573;
  --warning:  #ffa502;
  --text:     #e8e8f0;
  --text2:    #7878a0;
  --mono:     'DM Mono', monospace;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}
