mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-25 04:24:33 -04:00
🌈 Original Color Schemes
This commit is contained in:
parent
3cf97f5f1a
commit
6d4c4604ca
1 changed files with 26 additions and 0 deletions
26
packages/original/src/color.ts
Normal file
26
packages/original/src/color.ts
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
import { ColorSchemes } from "bibata-core/src/types";
|
||||||
|
|
||||||
|
// Common Colors
|
||||||
|
const black = "#000000";
|
||||||
|
const white = "#FFFFFF";
|
||||||
|
const amber = "#FF8300";
|
||||||
|
|
||||||
|
const colorSchemes: ColorSchemes = {
|
||||||
|
Amber: {
|
||||||
|
base: amber,
|
||||||
|
outline: white,
|
||||||
|
watch: {
|
||||||
|
background: white
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Classic: {
|
||||||
|
base: black,
|
||||||
|
outline: white
|
||||||
|
},
|
||||||
|
Ice: {
|
||||||
|
base: white,
|
||||||
|
outline: black
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export { colorSchemes };
|
Loading…
Add table
Add a link
Reference in a new issue