gabrielbull / react-desktop

React UI Components for macOS High Sierra and Windows 10
http://reactdesktop.js.org
MIT License
9.51k stars 461 forks source link

How to change color/backgroundColor of TitleBar macOs #154

Closed Noudea closed 3 years ago

Noudea commented 3 years ago

Hello how to change color/backgroundColor and also text of the TitleBar from macOs. thx

<Window
    height={height}
    width={width}
    padding="15px"
    background= {colors.background}
    style={{
        overflow: 'scroll',
        scrollbarWidth: 'none',
    }}
>
    <TitleBar
        title={props.pageName}
        controls
        // transparent={true}
        //  inset={true}
        onMaximizeClick={onMaximizeClick}
        onResizeClick={onResizeClick}
        onCloseClick={onCloseClick}
        onMinimizeClick={onMinimizeClick}
        className="titleBar"
    />
    {props.children}
</Window>