Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | // === テーマカラー ===
$bg: #d5ffd7;
$white: #fff;
$surface: #f0f7f1; // 薄い緑(リスト・引用・テーブルの背景を統一)
// === プライマリ(グリーン系) ===
$primary: #1bd77f;
$primary-dark: #15a863;
$primary-deeper: #288378;
// === リンク(ブルー系 - 2色に統一) ===
$link: #005b94;
$link-hover: #337ab7;
// === テキスト(3段階に統一) ===
$text: #212529;
$text-secondary: #555;
$text-muted: #767676; // WCAG AA準拠(4.54:1 on white)
// === ボーダー ===
$border: #d7d7d7;
// === アイコン背景 ===
$icon-bg: #034378;
// === 警告・エラー(ピンク系) ===
$pink: #ff7e79;
$pink-dark: #ff4d46;
$pink-light: #ffe8e7;
// === ページ背景画像 ===
$bg-backGround-pic: url("/assets/bg.svg");
|