@eoussama/firemitt
    Preparing search index...

    Type Alias TTheme

    Defines the theme colors used in the application. This type specifies the color scheme for theming purposes, including text, primary, and secondary colors.

    type TTheme = {
        background: string;
        primary: string;
        secondary: string;
        text: string;
    }
    Index

    Properties

    background: string

    The background color of the theme.

    primary: string

    The primary color of the theme.

    secondary: string

    The secondary color of the theme.

    text: string

    The color used for text elements.