### Generate Themes with Base16 Builder Source: https://context7.com/misterio77/base16-nebula-scheme/llms.txt Commands to install the Base16 builder CLI and generate application-specific configuration files from the Nebula scheme YAML. ```bash # Install base16-builder npm install -g base16-builder # Clone the nebula scheme git clone https://github.com/Misterio77/base16-nebula-scheme.git # Build themes for all supported applications base16-builder --scheme base16-nebula-scheme/nebula.yaml --template vim base16-builder --scheme base16-nebula-scheme/nebula.yaml --template shell base16-builder --scheme base16-nebula-scheme/nebula.yaml --template iterm2 ``` -------------------------------- ### Apply Nebula Colors in CSS Source: https://context7.com/misterio77/base16-nebula-scheme/llms.txt Example of mapping Nebula color values to CSS custom properties for use in web styling and syntax highlighting. ```css :root { --background: #22273b; --background-light: #414f60; --selection: #5a8380; --comment: #6e6f72; --foreground-dark: #87888b; --foreground: #a4a6a9; --foreground-light: #c7c9cd; --accent: #8dbdaa; --red: #777abc; --orange: #94929e; --yellow: #4f9062; --green: #6562a8; --cyan: #226f68; --blue: #4d6bb6; --purple: #716cae; --brown: #8c70a7; } body { background-color: var(--background); color: var(--foreground); } .syntax-keyword { color: var(--purple); } .syntax-string { color: var(--green); } .syntax-function { color: var(--blue); } .syntax-comment { color: var(--comment); } ``` -------------------------------- ### Define Nebula Color Palette in YAML Source: https://context7.com/misterio77/base16-nebula-scheme/llms.txt The scheme definition file maps base00 through base0F to specific hexadecimal color codes. This YAML structure is the standard format required by Base16 template builders. ```yaml scheme: "Nebula" author: "Gabriel Fontes (https://github.com/Misterio77)" # Background and foreground shades (dark to light) base00: "22273b" # Default Background base01: "414f60" # Lighter Background (status bars, line numbers) base02: "5a8380" # Selection Background base03: "6e6f72" # Comments, Invisibles base04: "87888b" # Dark Foreground (status bars) base05: "a4a6a9" # Default Foreground base06: "c7c9cd" # Light Foreground base07: "8dbdaa" # Lightest Foreground # Accent colors for syntax highlighting base08: "777abc" # Variables, XML Tags, Markup Link Text base09: "94929e" # Integers, Boolean, Constants base0A: "4f9062" # Classes, Markup Bold, Search Background base0B: "6562a8" # Strings, Inherited Class, Markup Code base0C: "226f68" # Support, Regular Expressions, Escape Characters base0D: "4d6bb6" # Functions, Methods, Headings base0E: "716cae" # Keywords, Storage, Selector base0F: "8c70a7" # Deprecated, Embedded Language Tags ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.