import { localize } from '@opensumi/ide-core-common'; import { registerColor } from '../../utils'; import { NOTIFICATIONS_BACKGROUND, NOTIFICATIONS_ERROR_ICON_FOREGROUND, NOTIFICATIONS_FOREGROUND, NOTIFICATIONS_INFO_ICON_FOREGROUND, NOTIFICATIONS_WARNING_ICON_FOREGROUND, } from '../notification'; export const ktModalForeground = registerColor( 'kt.modal.foreground', { light: NOTIFICATIONS_FOREGROUND, dark: NOTIFICATIONS_FOREGROUND, hcDark: null, hcLight: null }, localize('ktModalForeground', 'Modal Foreground color.'), ); export const ktModalBackground = registerColor( 'kt.modal.background', { light: NOTIFICATIONS_BACKGROUND, dark: NOTIFICATIONS_BACKGROUND, hcDark: null, hcLight: null }, localize('ktModalBackground', 'Modal Background color.'), ); export const ktModalSeparatorBackground = registerColor( 'kt.modal.separatorBackground', { light: '#2C3033', dark: '#2C3033', hcDark: null, hcLight: null }, localize('ktModalSeparatorBackground', 'Modal Separator Background color'), ); export const ktModalErrorIconForeground = registerColor( 'kt.modalErrorIcon.foreground', { light: NOTIFICATIONS_ERROR_ICON_FOREGROUND, dark: NOTIFICATIONS_ERROR_ICON_FOREGROUND, hcDark: null, hcLight: null, }, localize('ktModalErrorIconForeground', 'Modal Error Icon Foreground Color.'), ); export const ktModalWarningIconForeground = registerColor( 'kt.modalWarningIcon.foreground', { light: NOTIFICATIONS_WARNING_ICON_FOREGROUND, dark: NOTIFICATIONS_WARNING_ICON_FOREGROUND, hcDark: null, hcLight: null, }, localize('ktModalWarningIconForeground', 'Modal Warning Icon Foreground Color.'), ); export const ktModalInfoIconForeground = registerColor( 'kt.modalInfoIcon.foreground', { light: NOTIFICATIONS_INFO_ICON_FOREGROUND, dark: NOTIFICATIONS_INFO_ICON_FOREGROUND, hcDark: null, hcLight: null }, localize('ktModalInfoIconForeground', 'Modal Info Icon Foreground Color.'), ); export const ktModalSuccessIconForeground = registerColor( 'kt.modalSuccessIcon.foreground', { light: '#64B436', dark: '#64B436', hcDark: null, hcLight: null }, localize('ktModalSuccessIconForeground', 'Modal Success Icon Foreground Color.'), );