mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-23 11:36:55 -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 {
|
type Colors = {
|
||||||
[name: string]: {
|
base: string;
|
||||||
base: string;
|
outline: string;
|
||||||
outline: string;
|
watch?: {
|
||||||
watch?: {
|
background: string;
|
||||||
background: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
interface ThemeColors {
|
||||||
|
[name: string]: Colors;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PixelDiffRate {
|
interface PixelDiffRate {
|
||||||
|
@ -33,9 +35,4 @@ interface PixelDiffRate {
|
||||||
rate: number;
|
rate: number;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
export { Config, Frames, Colors, ThemeColors, PathConfig, PixelDiffRate };
|
||||||
interface KeyColors {
|
|
||||||
[name: string]: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export { Config, Frames, ColorSchemes, PathConfig, PixelDiffRate, KeyColors };
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue