35 lines
481 B
TypeScript
Executable File
35 lines
481 B
TypeScript
Executable File
export const loadingDebounceMs = 300;
|
|
|
|
export const maxRecentColors = 10;
|
|
|
|
export const maxRecentTags = 10;
|
|
|
|
export const defaultColors = [
|
|
"#d50000",
|
|
"#f44336",
|
|
"#e91e63",
|
|
"#f48fb1",
|
|
"#9c27b0",
|
|
"#ce93d8",
|
|
"#673ab7",
|
|
"#3f51b5",
|
|
"#9fa8da",
|
|
"#2196f3",
|
|
"#0d47a1",
|
|
"#00bcd4",
|
|
"#80deea",
|
|
"#009688",
|
|
"#80cbc4",
|
|
"#1b5e20",
|
|
"#4caf50",
|
|
"#a5d6a7",
|
|
"#cddc39",
|
|
"#ffeb3b",
|
|
"#ffc107",
|
|
"#ff9800",
|
|
"#ff5722",
|
|
"#795548",
|
|
"#9e9e9e",
|
|
"#607d8b",
|
|
];
|