Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>SCSS Variable Color ChipsNew to Visual Studio Code? Get it now.
SCSS Variable Color Chips

SCSS Variable Color Chips

Miral Kashiwagi

|
4 installs
| (0) | Free
Display color chips for SCSS variables and CSS custom properties with advanced workspace-wide variable resolution
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

SCSS Variable Color Chips

CSS/SCSS変数の色値をカラーチップで表示するVSCode拡張機能です。

機能

  • CSS変数(--color)とSCSS変数($color)の色値を視覚化
  • ワークスペース全体での変数検索

使い方

  1. CSS/SCSSファイルを開く
  2. 変数の色値が自動的にカラーチップで表示される
/* CSS カスタムプロパティ */
:root {
  --primary-color: #3498db;  
}

.button {
  background-color: var(--primary-color);  /* ← カラーチップが表示される */
}
/* SCSS変数 */
$primary-color: #3498db;

.button {
  background-color: $primary-color;  // ← カラーチップが表示される
}

設定

主な設定項目:

  • cssVariableColorChips.variableResolutionScope - 検索範囲(file/workspace)

対応ファイル

  • CSS (.css)
  • SCSS (.scss)
  • Sass (.sass)

動作要件

Visual Studio Code 1.99.0 以上

ライセンス

MIT License

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft