DuckDB Terminal - v0.2.0
    Preparing search index...

    Interface Theme

    A complete terminal theme definition.

    const myTheme: Theme = {
    name: 'my-dark-theme',
    colors: {
    background: '#1a1b26',
    foreground: '#a9b1d6',
    // ... other colors
    },
    };
    interface Theme {
        colors: ThemeColors;
        name: string;
    }
    Index

    Properties

    Properties

    colors: ThemeColors

    Color definitions for the theme

    name: string

    Unique name for the theme