Path: blob/main/replay/frontend/src/constants/themes.ts
1029 views
import ITheme from '~shared/interfaces/ITheme';1import { BLUE_500 } from './colors';23export const lightTheme: ITheme = {4titlebarBackgroundColor: '#d4d4d4',5addressBarBackgroundColor: '#fff',6addressBarTextColor: '#000',7toolbarBackgroundColor: '#ECECEC',8toolbarBottomLineBackgroundColor: 'rgba(0, 0, 0, 0.12)',9toolbarLightForeground: false,10toolbarSeparatorColor: 'rgba(0, 0, 0, 0.12)',11controlBackgroundColor: 'rgba(0,0,0,0.08)',12controlHoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',13controlValueColor: '#000',14controlLightIcon: false,15switchBackgroundColor: 'rgba(0, 0, 0, 0.16)',16dialogBackgroundColor: '#fff',17dialogSeparatorColor: 'rgba(0, 0, 0, 0.12)',18dialogTextColor: '#000',19dialogLightForeground: false,20pagesBackgroundColor: '#fff',21pagesLightForeground: false,22pagesTextColor: '#000',23pagesNavigationDrawerBackgroundColor: '#fafafa',24dropdownBackgroundColor: '#fff',25dropdownBackgroundColorTranslucent: 'rgba(255, 255, 255, 0.7)',26dropdownSeparatorColor: 'rgba(0, 0, 0, 0.12)',27backgroundColor: '#fff',28accentColor: BLUE_500,29};3031export const darkTheme: ITheme = {32titlebarBackgroundColor: '#1c1c1c',33addressBarBackgroundColor: '#262626',34addressBarTextColor: '#fff',35toolbarBackgroundColor: '#333333',36toolbarBottomLineBackgroundColor: 'rgba(255, 255, 255, 0.08)',37toolbarLightForeground: true,38toolbarSeparatorColor: 'rgba(255, 255, 255, 0.12)',39controlBackgroundColor: 'rgba(255, 255, 255, 0.1)',40controlHoverBackgroundColor: 'rgba(255, 255, 255, 0.12)',41controlValueColor: '#fff',42controlLightIcon: true,43switchBackgroundColor: 'rgba(255, 255, 255, 0.24)',44dialogBackgroundColor: '#383838',45dialogSeparatorColor: 'rgba(255, 255, 255, 0.12)',46dialogTextColor: '#fff',47dialogLightForeground: true,48pagesBackgroundColor: '#212121',49pagesLightForeground: true,50pagesTextColor: '#fff',51dropdownBackgroundColor: 'rgb(66, 66, 66)',52dropdownBackgroundColorTranslucent: 'rgb(60, 60, 60, 0.6)',53dropdownSeparatorColor: 'rgba(255, 255, 255, 0.12)',54pagesNavigationDrawerBackgroundColor: 'rgba(255, 255, 255, 0.05)',55backgroundColor: '#1c1c1c',56accentColor: BLUE_500,57};585960