12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
|
|
// === COLOR PALETTE ===
|
||
|
|
export const NEXUS = {
|
||
|
|
colors: {
|
||
|
|
bg: 0x000008,
|
||
|
|
starCore: 0xffffff,
|
||
|
|
starDim: 0x8899cc,
|
||
|
|
constellationLine: 0x334488,
|
||
|
|
constellationFade: 0x112244,
|
||
|
|
accent: 0x4488ff,
|
||
|
|
}
|
||
|
|
};
|