Update colors
This commit is contained in:
parent
938e7f3c36
commit
4a520d52f8
1 changed files with 6 additions and 6 deletions
|
|
@ -1,10 +1,10 @@
|
||||||
import { rgb } from './helper/rgb';
|
|
||||||
import { rgb255 } from './helper/rgb255';
|
import { rgb255 } from './helper/rgb255';
|
||||||
|
|
||||||
const declaColor = rgb255(181, 138, 255);
|
const q = 2.5;
|
||||||
const redColor = rgb255(255, 138, 138);
|
const declaColor = rgb255(64 * q, 105 * q, 165 * q);
|
||||||
const declaPlanetColor = rgb(0, 0, 3);
|
const redColor = rgb255(209 * q, 86 * q, 82 * q);
|
||||||
const redPlanetColor = rgb(3, 0, 0);
|
const declaPlanetColor = declaColor;
|
||||||
|
const redPlanetColor = redColor;
|
||||||
|
|
||||||
export const settings = {
|
export const settings = {
|
||||||
lightCutoffDistance: 600,
|
lightCutoffDistance: 600,
|
||||||
|
|
@ -12,6 +12,7 @@ export const settings = {
|
||||||
maxVelocityX: 1000,
|
maxVelocityX: 1000,
|
||||||
maxVelocityY: 1000,
|
maxVelocityY: 1000,
|
||||||
radiusSteps: 500,
|
radiusSteps: 500,
|
||||||
|
worldRadius: 10000,
|
||||||
objectsOnCircleLength: 0.002,
|
objectsOnCircleLength: 0.002,
|
||||||
planetEdgeCount: 7,
|
planetEdgeCount: 7,
|
||||||
takeControlTimeInSeconds: 4,
|
takeControlTimeInSeconds: 4,
|
||||||
|
|
@ -31,7 +32,6 @@ export const settings = {
|
||||||
projectileFadeSpeed: 20,
|
projectileFadeSpeed: 20,
|
||||||
projectileCreationInterval: 0.1,
|
projectileCreationInterval: 0.1,
|
||||||
playerColorIndexOffset: 3,
|
playerColorIndexOffset: 3,
|
||||||
worldRadius: 10000,
|
|
||||||
backgroundGradient: [rgb255(90, 38, 43), rgb255(43, 39, 73)],
|
backgroundGradient: [rgb255(90, 38, 43), rgb255(43, 39, 73)],
|
||||||
declaColor,
|
declaColor,
|
||||||
declaPlanetColor,
|
declaPlanetColor,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue