mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-23 03:26:58 -04:00
🌈 Colors type added
This commit is contained in:
parent
70d443b394
commit
a1bd16e551
1 changed files with 10 additions and 13 deletions
|
@ -18,14 +18,16 @@ interface Frames {
|
|||
};
|
||||
}
|
||||
|
||||
interface ColorSchemes {
|
||||
[name: string]: {
|
||||
base: string;
|
||||
outline: string;
|
||||
watch?: {
|
||||
background: string;
|
||||
};
|
||||
type Colors = {
|
||||
base: string;
|
||||
outline: string;
|
||||
watch?: {
|
||||
background: string;
|
||||
};
|
||||
};
|
||||
|
||||
interface ThemeColors {
|
||||
[name: string]: Colors;
|
||||
}
|
||||
|
||||
interface PixelDiffRate {
|
||||
|
@ -33,9 +35,4 @@ interface PixelDiffRate {
|
|||
rate: number;
|
||||
};
|
||||
}
|
||||
|
||||
interface KeyColors {
|
||||
[name: string]: string;
|
||||
}
|
||||
|
||||
export { Config, Frames, ColorSchemes, PathConfig, PixelDiffRate, KeyColors };
|
||||
export { Config, Frames, Colors, ThemeColors, PathConfig, PixelDiffRate };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue