Altair EEvision 2025.1 APIs
    Preparing search index...

    Interface ColorScheme

    Defines a set of colors for EEvision's rendering engine Nlview.

    All color values need to be of the form #RRGGBB where RR, GG, and BB are hexadecimal numbers between 00 and FF. Color values are case-insensitive, i.e., #FF88DE and #ff88de represent the same color. Optionally, a color transparency can be added by another set of hex digits separated by a / character, for example #ffcc88/cc. This sets the transparency of the color to cc/ff = 204/255 = 80%. A transparency of 00 is opaque.

    interface ColorScheme {
        attrcolor: string;
        backgroundcolor: string;
        boxcolor0: string;
        boxcolor3: string;
        boxinstcolor: string;
        boxpincolor: string;
        buscolor: string;
        fillcolor1: string;
        fillcolor2: string;
        fillcolor3: string;
        fillcolor6: string;
        netcolor: string;
        objectgray: string;
        overlaycolor: string;
        portcolor: string;
        rippercolor: string;
        selectionmodecolor: string;
    }
    Index

    Properties

    attrcolor: string

    Specifies the color for the "@attr", "@val", "@vconn", "@vconn2" and user-defined pin attributes (see attribute displays).

    "#000000" (= black)

    backgroundcolor: string

    Specifies the background color for the schematic.

    "#FFFFFF" (= white)

    boxcolor0: string

    Specifies the color of the outline of components.

    "#192E4C"

    boxcolor3: string

    Specifies the color of unconnected pins.

    `"#999999"
    
    boxinstcolor: string

    Specifies the instance-name color for the symbols.

    "#192E4C"

    boxpincolor: string

    Specifies the pin color for the symbols.

    "#2A5E6F"

    buscolor: string

    Specifies the color of the netBundles and netBundle names.

    "#469CB9"

    fillcolor1: string

    Fill color for the body of UNDEF, ECU, HIER, and EYELET components.

    "#F4F5F7"

    fillcolor2: string

    Fill color for the connectors of HIER, ECU, and INLINER components.

    "#E8EBEE"

    fillcolor3: string

    Fill color for connectors of ECU and Inliner components that have no connected cavity.

    "#F4F5F7"

    fillcolor6: string

    Fill color for the body of INLINER components.

    "#B9C1CB"

    netcolor: string

    Specifies the color of the wires and wire names.

    "#2A5E6F"

    objectgray: string

    Specifies the graymode color.

    "#808080"

    overlaycolor: string

    Specifies the color of the so called overlay buses (artificial bundles, displayed whenever two or more different nets and/or netBundles connect to the same pinBus/portBus).

    "#607AA0"

    portcolor: string

    Specifies the body and pin color for both port symbols and net page connectors (in page splitting mode).

    "#2a5e6f"

    rippercolor: string

    Specifies the color of the bus rippers. The color set here is also used for slash rippers.

    "#607AA0"

    selectionmodecolor: string

    Specifies the background color when selection mode is enabled.

    "#DDDDDD"