Ciapre Helix Themes

November 16, 2025 ยท View on GitHub

A collection of themes for the Helix editor based on the Ciapre color scheme originally created as TextMate themes.

Screenshots

Ciapre (Blue Theme)

Ciapre 1Ciapre 2Ciapre 3
Ciapre ThemeCiapre ThemeCode Example

CiapreBlack (Dark Theme)

CiapreBlack 1CiapreBlack 2CiapreBlack 3
CiapreBlack ThemeCiapreBlack ThemeCode Example

Themes Included

  • Ciapre: A dark theme with a blue background and warm accent colors
  • CiapreBlack: A darker variant with a black background and the same warm accent colors

Installation

Run the setup script to automatically install the themes and optionally configure your default theme:

./setup.sh

Manual Installation

  1. Locate your Helix configuration directory:

    • Linux/macOS: ~/.config/helix/
    • Windows: %AppData%\helix\
  2. Create a themes directory if it doesn't exist:

    mkdir -p ~/.config/helix/themes
    
  3. Copy the .toml theme files to the themes directory:

    cp ciapre.toml ~/.config/helix/themes/
    cp ciapreblack.toml ~/.config/helix/themes/
    
  4. Update your Helix configuration file (config.toml in the Helix config directory) to use one of the themes:

    [theme]
    default = "ciapre"
    

    Or to use the black variant:

    [theme]
    default = "ciapreblack"
    

Configuration

You can also set the theme on a per-project basis by adding a .helix directory to your project and creating a config.toml file with your theme preference.

About the Colors

The Ciapre themes feature:

  • Dark backgrounds for reduced eye strain
  • Warm accent colors for syntax highlighting
  • Carefully selected contrast ratios for readability
  • Support for a wide range of programming languages

License

This project is licensed under the MIT License - see the LICENSE file for details.