mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-19 17:55:19 -04:00
28 lines
409 B
TypeScript
28 lines
409 B
TypeScript
import { Colors } from "core/src/types";
|
|
|
|
interface Config {
|
|
themeName: string;
|
|
color: Colors;
|
|
}
|
|
|
|
const black = "#000000";
|
|
const white = "#FFFFFF";
|
|
|
|
const config: Config[] = [
|
|
{
|
|
themeName: "macOSBigSur",
|
|
color: {
|
|
base: black,
|
|
outline: white,
|
|
},
|
|
},
|
|
{
|
|
themeName: "macOSBigSur-White",
|
|
color: {
|
|
base: white,
|
|
outline: black,
|
|
},
|
|
},
|
|
];
|
|
|
|
export { config };
|