mirror of
https://github.com/bitwarden/web
synced 2025-12-21 10:43:26 +00:00
10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
export interface ThemeVariableExport {
|
|
lightInputColor: string;
|
|
lightInputPlaceholderColor: string;
|
|
darkInputColor: string;
|
|
darkInputPlaceholderColor: string;
|
|
}
|
|
|
|
export const ThemeVariables: ThemeVariableExport;
|
|
export default ThemeVariables;
|