You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
593 lines
23 KiB
593 lines
23 KiB
; Every single option in this config should be considered [ADVANCED]. |
|
; DO NOT CHANGE THEM unless you are sure you know what you're doing. |
|
[AcediaCore.AcediaEnvironment] |
|
debugMode=false |
|
|
|
[AcediaCore.ServerSideEffects] |
|
; Acedia requires adding its own `GameRules` to listen to many different |
|
; game events. |
|
; It's normal for a mod to add its own game rules: game rules are |
|
; implemented in such a way that they form a linked list and, after |
|
; first (root) rules object receives a message it tells about said message to |
|
; the next rules object, which does the same, propagating messages through |
|
; the whole list. |
|
; This is the least offensive side effect of AcediaCore and there should |
|
; be no reason to prevents its `GameRules` from being added. |
|
allowAddingGameRules=true |
|
; If allowed, AcediaCore can provide some additional information about |
|
; itself and other packages through "help" / "status" / "version" / "credits" |
|
; mutate commands, as well as allow to use "mutate acediacommands" to |
|
; emergency-enable `Commands` feature. |
|
; However that required access to "mutate" command events, which might not |
|
; always be desirable from `AcediaCore` library. This setting allows you to |
|
; disable such hooks. |
|
; NOTE: setting this to `false` will not prevent `Commands` feature from |
|
; hooking into mutate on its own. |
|
allowHookingIntoMutate=true |
|
; Unfortunately, thanks to the TWI's code, there's no way to catch events |
|
; of when certain kinds of damage are dealt: from welder, bloat's bile and |
|
; siren's scream. At least not without something drastic, like replacing game |
|
; type class. |
|
; As a workaround, Acedia can optionally replace bloat and siren damage |
|
; type to at least catch damage dealt by zeds (as being dealt welder damage is |
|
; pretty rare and insignificant). This change has several unfortunate |
|
; side-effects: |
|
; 1. Potentially breaking mods that are looking for `DamTypeVomit` and |
|
; `SirenScreamDamage` damage types specifically. Fixing this issue |
|
; would require these mods to either also try and catch Acedia's |
|
; replacements `AcediaCore.Dummy_DamTypeVomit` and |
|
; `AcediaCore.Dummy_SirenScreamDamage` or to catch any child classes |
|
; of `DamTypeVomit` and `SirenScreamDamage` (as Acedia's replacements |
|
; are also their child classes). |
|
; 2. Breaking some achievements that rely on |
|
; `KFSteamStatsAndAchievements`'s `KilledEnemyWithBloatAcid()` method |
|
; being called. This is mostly dealt with by Acedia calling it |
|
; manually. However it relies on killed pawn to have |
|
; `lastDamagedByType` set to `DamTypeVomit`, which sometimes might not |
|
; be the case. Achievements should still be obtainable. |
|
; 3. A lot of siren's visual damage effects code does direct checks for |
|
; `SirenScreamDamage` class. These can also break, stopping working as |
|
; intended. |
|
allowReplacingDamageTypes=true |
|
; Acedia requires injecting its own `BroadcastHandler` to listen to |
|
; the broadcasted messages. |
|
; It's normal for a mod to add its own broadcast handler: broadcast handlers |
|
; are implemented in such a way that they form a linked list and, after |
|
; first (root) handler receives a message it tells about said message to |
|
; the next handler, which does the same, propagating messages through |
|
; the whole list. |
|
; If you do not wish Acedia to add its own handler, you should specify |
|
; `BHIJ_None` as `broadcastHandlerInjectionLevel`'s value. If you want to allow |
|
; it to simply add its broadcast handler to the end of the handler's |
|
; linked list, as described above, set it to `BHIJ_Registered`. |
|
; However, more information can be obtained if Acedia's broadcast handler is |
|
; inserted at the root of the whole chain. This is the preferred way for |
|
; Acedia and if you do not have a reason to forbid that (for example, for mod |
|
; compatibility reasons), you should set this value at `BHIJ_Root`. |
|
broadcastHandlerInjectionLevel=BHIJ_Root |
|
|
|
[AcediaCore.SchedulerAPI] |
|
; How often can files be saved on disk. This is a relatively expensive |
|
; operation and we don't want to write a lot of different files at once. |
|
; But since we lack a way to exactly measure how much time that saving will |
|
; take, AcediaCore falls back to simply performing every saving with same |
|
; uniform time intervals in-between. |
|
; This variable decides how much time there should be between two file |
|
; writing accesses. |
|
; Negative and zero values mean that all writing disk access will be |
|
; granted as soon as possible, without any cooldowns. |
|
diskSaveCooldown=0.25 |
|
; Maximum total work units for jobs allowed per tick. Jobs are expected to be |
|
; constructed such that they don't lead to a crash if they have to perform |
|
; this much work. |
|
; |
|
; Changing default value of `10000` is not advised. |
|
maxWorkUnits=10000 |
|
; How many different jobs can be performed per tick. This limit is added so |
|
; that `maxWorkUnits` won't be spread too thin if a lot of jobs get registered |
|
; at once. |
|
maxJobsPerTick=5 |
|
|
|
[AcediaCore.UserAPI] |
|
userDataDBLink="local:database/users" |
|
|
|
[AcediaCore.LoggerAPI] |
|
; Loggers, specified in `allLoggers` will log all levels of messages |
|
allLoggers=(name="default",cls=Class'AcediaCore.ConsoleLogger') |
|
; Loggers, specified in one of the arrays below will only output logs of |
|
; a particular level (although one can always add the same `Logger` to |
|
; several log levels) |
|
;debugLoggers= |
|
;infoLoggers= |
|
;warningLoggers= |
|
;errorLoggers= |
|
;fatalLoggers= |
|
|
|
; Loggers themselves must be defined in per-object-config records like these |
|
; that specify name and class of the logger. |
|
; `ConsoleLogger` is a simple logger that logs messages in the standard |
|
; console and logfile output using `Log()` function. |
|
[default ConsoleLogger] |
|
; Should logger display prefix indicating it's a log message from Acedia? |
|
acediaStamp=true |
|
; Should logger display time stamp prefix in front of log messages? |
|
timeStamp=true |
|
; Should logger display information about what level message was logged? |
|
levelStamp=true |
|
|
|
[default Commands] |
|
; This feature provides a mechanism to define commands that automatically |
|
; parse their arguments into standard Acedia collection. It also allows to |
|
; manage them (and specify limitation on how they can be called) in a |
|
; centralized manner. |
|
autoEnable=true |
|
|
|
[AcediaCore.TestingService] |
|
; Allows you to run tests on server's start up. This option is to help run |
|
; tests quicker during development and should not be used for servers that are |
|
; setup for actually playing the game. |
|
runTestsOnStartUp=false |
|
; Use these flags to only run tests from particular test cases |
|
filterTestsByName=false |
|
filterTestsByGroup=false |
|
requiredName="" |
|
requiredGroup="" |
|
|
|
[AcediaCore.AcediaObjectPool] |
|
;poolSizeOverwrite=(objectClass=<class>,maxPoolSize=<desiredPoolLimit>) |
|
|
|
[AcediaCore.ConsoleAPI] |
|
; These should guarantee decent text output in console even at |
|
; 640x480 shit resolution |
|
; (and it look fine at normal resolutions as well) |
|
maxVisibleLineWidth=80 |
|
maxTotalLineWidth=108 |
|
|
|
[AcediaCore.PlayerNotificationQueue] |
|
; Maximum time that a notification is allowed to be displayed on the player's screen |
|
maximumNotifyTime=20 |
|
|
|
[AcediaCore.ColorAPI] |
|
; Changing these values will alter color's definitions in `ColorAPI`, |
|
; changing how Acedia behaves |
|
TextDefault=(R=255,G=255,B=255,A=255) |
|
TextHeader=(R=128,G=0,B=128,A=255) |
|
TextSubHeader=(R=147,G=112,B=219,A=255) |
|
TextSubtle=(R=211,G=211,B=211,A=255) |
|
TextEmphasis=(R=0,G=128,B=255,A=255) |
|
TextPositive=(R=0,G=128,B=0,A=255) |
|
TextNeutral=(R=255,G=255,B=0,A=255) |
|
TextNegative=(R=220,G=20,B=60,A=255) |
|
TextOk=(R=0,G=255,B=0,A=255) |
|
TextWarning=(R=255,G=128,B=0,A=255) |
|
TextFailure=(R=255,G=0,B=0,A=255) |
|
TypeNumber=(R=255,G=235,B=172,A=255) |
|
TypeBoolean=(R=199,G=226,B=244,A=255) |
|
TypeString=(R=243,G=204,B=223,A=255) |
|
TypeLiteral=(R=194,G=239,B=235,A=255) |
|
TypeClass=(R=218,G=219,B=240,A=255) |
|
jPropertyName=(R=255,G=77,B=77,A=255) |
|
jObjectBraces=(R=220,G=220,B=220,A=255) |
|
jArrayBraces=(R=220,G=220,B=220,A=255) |
|
jComma=(R=220,G=220,B=220,A=255) |
|
jColon=(R=220,G=220,B=220,A=255) |
|
jNumber=(R=255,G=255,B=77,A=255) |
|
jBoolean=(R=38,G=139,B=210,A=255) |
|
jString=(R=98,G=173,B=227,A=255) |
|
jNull=(R=38,G=139,B=210,A=255) |
|
Pink=(R=255,G=192,B=203,A=255) |
|
LightPink=(R=255,G=182,B=193,A=255) |
|
HotPink=(R=255,G=105,B=180,A=255) |
|
DeepPink=(R=255,G=20,B=147,A=255) |
|
PaleVioletRed=(R=219,G=112,B=147,A=255) |
|
MediumVioletRed=(R=199,G=21,B=133,A=255) |
|
LightSalmon=(R=255,G=160,B=122,A=255) |
|
Salmon=(R=250,G=128,B=114,A=255) |
|
DarkSalmon=(R=233,G=150,B=122,A=255) |
|
LightCoral=(R=240,G=128,B=128,A=255) |
|
IndianRed=(R=205,G=92,B=92,A=255) |
|
Crimson=(R=220,G=20,B=60,A=255) |
|
Firebrick=(R=178,G=34,B=34,A=255) |
|
DarkRed=(R=139,G=0,B=0,A=255) |
|
Red=(R=255,G=0,B=0,A=255) |
|
OrangeRed=(R=255,G=69,B=0,A=255) |
|
Tomato=(R=255,G=99,B=71,A=255) |
|
Coral=(R=255,G=127,B=80,A=255) |
|
DarkOrange=(R=255,G=140,B=0,A=255) |
|
Orange=(R=255,G=165,B=0,A=255) |
|
Yellow=(R=255,G=255,B=0,A=255) |
|
LightYellow=(R=255,G=255,B=224,A=255) |
|
LemonChiffon=(R=255,G=250,B=205,A=255) |
|
LightGoldenrodYellow=(R=250,G=250,B=210,A=255) |
|
PapayaWhip=(R=255,G=239,B=213,A=255) |
|
Moccasin=(R=255,G=228,B=181,A=255) |
|
PeachPuff=(R=255,G=218,B=185,A=255) |
|
PaleGoldenrod=(R=238,G=232,B=170,A=255) |
|
Khaki=(R=240,G=230,B=140,A=255) |
|
DarkKhaki=(R=189,G=183,B=107,A=255) |
|
Gold=(R=255,G=215,B=0,A=255) |
|
CoolGold=(R=255,G=200,B=120,A=255) |
|
Cornsilk=(R=255,G=248,B=220,A=255) |
|
BlanchedAlmond=(R=255,G=235,B=205,A=255) |
|
Bisque=(R=255,G=228,B=196,A=255) |
|
NavajoWhite=(R=255,G=222,B=173,A=255) |
|
Wheat=(R=245,G=222,B=179,A=255) |
|
Burlywood=(R=222,G=184,B=135,A=255) |
|
TanColor=(R=210,G=180,B=140,A=255) |
|
RosyBrown=(R=188,G=143,B=143,A=255) |
|
SandyBrown=(R=244,G=164,B=96,A=255) |
|
Goldenrod=(R=218,G=165,B=32,A=255) |
|
DarkGoldenrod=(R=184,G=134,B=11,A=255) |
|
Peru=(R=205,G=133,B=63,A=255) |
|
Chocolate=(R=210,G=105,B=30,A=255) |
|
SaddleBrown=(R=139,G=69,B=19,A=255) |
|
Sienna=(R=160,G=82,B=45,A=255) |
|
Brown=(R=165,G=42,B=42,A=255) |
|
Maroon=(R=128,G=0,B=0,A=255) |
|
DarkOliveGreen=(R=85,G=107,B=47,A=255) |
|
Olive=(R=128,G=128,B=0,A=255) |
|
OliveDrab=(R=107,G=142,B=35,A=255) |
|
YellowGreen=(R=154,G=205,B=50,A=255) |
|
LimeGreen=(R=50,G=205,B=50,A=255) |
|
Lime=(R=0,G=255,B=0,A=255) |
|
LawnGreen=(R=124,G=252,B=0,A=255) |
|
Chartreuse=(R=127,G=255,B=0,A=255) |
|
GreenYellow=(R=173,G=255,B=47,A=255) |
|
SpringGreen=(R=0,G=255,B=127,A=255) |
|
MediumSpringGreen=(R=0,G=250,B=154,A=255) |
|
LightGreen=(R=144,G=238,B=144,A=255) |
|
PaleGreen=(R=152,G=251,B=152,A=255) |
|
DarkSeaGreen=(R=143,G=188,B=143,A=255) |
|
MediumAquamarine=(R=102,G=205,B=170,A=255) |
|
MediumSeaGreen=(R=60,G=179,B=113,A=255) |
|
SeaGreen=(R=46,G=139,B=87,A=255) |
|
ForestGreen=(R=34,G=139,B=34,A=255) |
|
Green=(R=0,G=128,B=0,A=255) |
|
DarkGreen=(R=0,G=100,B=0,A=255) |
|
Aqua=(R=0,G=255,B=255,A=255) |
|
Cyan=(R=0,G=255,B=255,A=255) |
|
LightCyan=(R=224,G=255,B=255,A=255) |
|
PaleTurquoise=(R=175,G=238,B=238,A=255) |
|
Aquamarine=(R=127,G=255,B=212,A=255) |
|
Turquoise=(R=64,G=224,B=208,A=255) |
|
MediumTurquoise=(R=72,G=209,B=204,A=255) |
|
DarkTurquoise=(R=0,G=206,B=209,A=255) |
|
LightSeaGreen=(R=32,G=178,B=170,A=255) |
|
CadetBlue=(R=95,G=158,B=160,A=255) |
|
DarkCyan=(R=0,G=139,B=139,A=255) |
|
Teal=(R=0,G=128,B=128,A=255) |
|
LightSteelBlue=(R=176,G=196,B=222,A=255) |
|
PowderBlue=(R=176,G=224,B=230,A=255) |
|
LightBlue=(R=173,G=216,B=230,A=255) |
|
SkyBlue=(R=135,G=206,B=235,A=255) |
|
LightSkyBlue=(R=135,G=206,B=250,A=255) |
|
DeepSkyBlue=(R=0,G=191,B=255,A=255) |
|
DodgerBlue=(R=30,G=144,B=255,A=255) |
|
CornflowerBlue=(R=100,G=149,B=237,A=255) |
|
SteelBlue=(R=70,G=130,B=180,A=255) |
|
RoyalBlue=(R=65,G=105,B=225,A=255) |
|
Blue=(R=0,G=0,B=255,A=255) |
|
MediumBlue=(R=0,G=0,B=205,A=255) |
|
DarkBlue=(R=0,G=0,B=139,A=255) |
|
Navy=(R=0,G=0,B=128,A=255) |
|
MidnightBlue=(R=25,G=25,B=112,A=255) |
|
Lavender=(R=230,G=230,B=250,A=255) |
|
Thistle=(R=216,G=191,B=216,A=255) |
|
Plum=(R=221,G=160,B=221,A=255) |
|
Violet=(R=238,G=130,B=238,A=255) |
|
Orchid=(R=218,G=112,B=214,A=255) |
|
Fuchsia=(R=255,G=0,B=255,A=255) |
|
Magenta=(R=255,G=0,B=255,A=255) |
|
MediumOrchid=(R=186,G=85,B=211,A=255) |
|
MediumPurple=(R=147,G=112,B=219,A=255) |
|
BlueViolet=(R=138,G=43,B=226,A=255) |
|
DarkViolet=(R=148,G=0,B=211,A=255) |
|
DarkOrchid=(R=153,G=50,B=204,A=255) |
|
DarkMagenta=(R=139,G=0,B=139,A=255) |
|
Purple=(R=128,G=0,B=128,A=255) |
|
Indigo=(R=75,G=0,B=130,A=255) |
|
DarkSlateBlue=(R=72,G=61,B=139,A=255) |
|
SlateBlue=(R=106,G=90,B=205,A=255) |
|
MediumSlateBlue=(R=123,G=104,B=238,A=255) |
|
White=(R=255,G=255,B=255,A=255) |
|
Snow=(R=255,G=250,B=250,A=255) |
|
Honeydew=(R=240,G=255,B=240,A=255) |
|
MintCream=(R=245,G=255,B=250,A=255) |
|
Azure=(R=240,G=255,B=255,A=255) |
|
AliceBlue=(R=240,G=248,B=255,A=255) |
|
GhostWhite=(R=248,G=248,B=255,A=255) |
|
WhiteSmoke=(R=245,G=245,B=245,A=255) |
|
Seashell=(R=255,G=245,B=238,A=255) |
|
Beige=(R=245,G=245,B=220,A=255) |
|
OldLace=(R=253,G=245,B=230,A=255) |
|
FloralWhite=(R=255,G=250,B=240,A=255) |
|
Ivory=(R=255,G=255,B=240,A=255) |
|
AntiqueWhite=(R=250,G=235,B=215,A=255) |
|
Linen=(R=250,G=240,B=230,A=255) |
|
LavenderBlush=(R=255,G=240,B=245,A=255) |
|
MistyRose=(R=255,G=228,B=225,A=255) |
|
Gainsboro=(R=220,G=220,B=220,A=255) |
|
LightGray=(R=211,G=211,B=211,A=255) |
|
Silver=(R=192,G=192,B=192,A=255) |
|
DarkGray=(R=169,G=169,B=169,A=255) |
|
Gray=(R=128,G=128,B=128,A=255) |
|
DimGray=(R=105,G=105,B=105,A=255) |
|
LightSlateGray=(R=119,G=136,B=153,A=255) |
|
SlateGray=(R=112,G=128,B=144,A=255) |
|
DarkSlateGray=(R=47,G=79,B=79,A=255) |
|
Eigengrau=(R=22,G=22,B=29,A=255) |
|
CoolBlack=(R=22,G=22,B=29,A=255) |
|
Black=(R=0,G=0,B=0,A=255) |
|
vuered=(R=244,G=67,B=54,A=255) |
|
redlighten5=(R=255,G=235,B=238,A=255) |
|
redlighten4=(R=255,G=205,B=210,A=255) |
|
redlighten3=(R=239,G=154,B=154,A=255) |
|
redlighten2=(R=229,G=115,B=115,A=255) |
|
redlighten1=(R=239,G=83,B=80,A=255) |
|
reddarken1=(R=229,G=57,B=53,A=255) |
|
reddarken2=(R=211,G=47,B=47,A=255) |
|
reddarken3=(R=198,G=40,B=40,A=255) |
|
reddarken4=(R=183,G=28,B=28,A=255) |
|
redaccent1=(R=255,G=138,B=128,A=255) |
|
redaccent2=(R=255,G=82,B=82,A=255) |
|
redaccent3=(R=255,G=23,B=68,A=255) |
|
redaccent4=(R=213,G=0,B=0,A=255) |
|
vuepink=(R=233,G=30,B=99,A=255) |
|
pinklighten5=(R=252,G=228,B=236,A=255) |
|
pinklighten4=(R=248,G=187,G=208,A=255) |
|
pinklighten3=(R=244,G=143,G=177,A=255) |
|
pinklighten2=(R=240,G=98,G=146,A=255) |
|
pinklighten1=(R=236,G=64,G=122,A=255) |
|
pinkdarken1=(R=216,G=27,G=96,A=255) |
|
pinkdarken2=(R=194,G=24,G=91,A=255) |
|
pinkdarken3=(R=173,G=20,G=87,A=255) |
|
pinkdarken4=(R=136,G=14,G=79,A=255) |
|
pinkaccent1=(R=255,G=128,G=171,A=255) |
|
pinkaccent2=(R=255,G=64,G=129,A=255) |
|
pinkaccent3=(R=245,G=0,G=87,A=255) |
|
pinkaccent4=(R=197,G=17,G=98,A=255) |
|
vuepurple=(R=156,G=39,G=176,A=255) |
|
purplelighten5=(R=243,G=229,G=245,A=255) |
|
purplelighten4=(R=225,G=190,G=231,A=255) |
|
purplelighten3=(R=206,G=147,G=216,A=255) |
|
purplelighten2=(R=186,G=104,G=200,A=255) |
|
purplelighten1=(R=171,G=71,G=188,A=255) |
|
purpledarken1=(R=142,G=36,G=170,A=255) |
|
purpledarken2=(R=123,G=31,G=162,A=255) |
|
purpledarken3=(R=106,G=27,G=154,A=255) |
|
purpledarken4=(R=74,G=20,G=140,A=255) |
|
purpleaccent1=(R=234,G=128,G=252,A=255) |
|
purpleaccent2=(R=224,G=64,G=251,A=255) |
|
purpleaccent3=(R=213,G=0,G=249,A=255) |
|
purpleaccent4=(R=170,G=0,G=255,A=255) |
|
deeppurple=(R=103,G=58,G=183,A=255) |
|
vuedeeppurple=(R=103,G=58,G=183,A=255) |
|
deeppurplelighten5=(R=237,G=231,G=246,A=255) |
|
deeppurplelighten4=(R=209,G=196,G=233,A=255) |
|
deeppurplelighten3=(R=179,G=157,G=219,A=255) |
|
deeppurplelighten2=(R=149,G=117,G=205,A=255) |
|
deeppurplelighten1=(R=126,G=87,G=194,A=255) |
|
deeppurpledarken1=(R=94,G=53,G=177,A=255) |
|
deeppurpledarken2=(R=81,G=45,G=168,A=255) |
|
deeppurpledarken3=(R=69,G=39,G=160,A=255) |
|
deeppurpledarken4=(R=49,G=27,G=146,A=255) |
|
deeppurpleaccent1=(R=179,G=136,G=255,A=255) |
|
deeppurpleaccent2=(R=124,G=77,G=255,A=255) |
|
deeppurpleaccent3=(R=101,G=31,G=255,A=255) |
|
deeppurpleaccent4=(R=98,G=0,G=234,A=255) |
|
vueindigo=(R=63,G=81,G=181,A=255) |
|
indigolighten5=(R=232,G=234,G=246,A=255) |
|
indigolighten4=(R=197,G=202,G=233,A=255) |
|
indigolighten3=(R=159,G=168,G=218,A=255) |
|
indigolighten2=(R=121,G=134,G=203,A=255) |
|
indigolighten1=(R=92,G=107,G=192,A=255) |
|
indigodarken1=(R=57,G=73,G=171,A=255) |
|
indigodarken2=(R=48,G=63,G=159,A=255) |
|
indigodarken3=(R=40,G=53,G=147,A=255) |
|
indigodarken4=(R=26,G=35,G=126,A=255) |
|
indigoaccent1=(R=140,G=158,G=255,A=255) |
|
indigoaccent2=(R=83,G=109,G=254,A=255) |
|
indigoaccent3=(R=61,G=90,G=254,A=255) |
|
indigoaccent4=(R=48,G=79,G=254,A=255) |
|
vueblue=(R=33,G=150,G=243,A=255) |
|
bluelighten5=(R=227,G=242,G=253,A=255) |
|
bluelighten4=(R=187,G=222,G=251,A=255) |
|
bluelighten3=(R=144,G=202,G=249,A=255) |
|
bluelighten2=(R=100,G=181,G=246,A=255) |
|
bluelighten1=(R=66,G=165,G=245,A=255) |
|
bluedarken1=(R=30,G=136,G=229,A=255) |
|
bluedarken2=(R=25,G=118,G=210,A=255) |
|
bluedarken3=(R=21,G=101,G=192,A=255) |
|
bluedarken4=(R=13,G=71,G=161,A=255) |
|
blueaccent1=(R=130,G=177,G=255,A=255) |
|
blueaccent2=(R=68,G=138,G=255,A=255) |
|
blueaccent3=(R=41,G=121,G=255,A=255) |
|
blueaccent4=(R=41,G=98,G=255,A=255) |
|
vuelightblue=(R=3,G=169,G=244,A=255) |
|
lightbluelighten5=(R=225,G=245,G=254,A=255) |
|
lightbluelighten4=(R=179,G=229,G=252,A=255) |
|
lightbluelighten3=(R=129,G=212,G=250,A=255) |
|
lightbluelighten2=(R=79,G=195,G=247,A=255) |
|
lightbluelighten1=(R=41,G=182,G=246,A=255) |
|
lightbluedarken1=(R=3,G=155,G=229,A=255) |
|
lightbluedarken2=(R=2,G=136,G=209,A=255) |
|
lightbluedarken3=(R=2,G=119,G=189,A=255) |
|
lightbluedarken4=(R=1,G=87,G=155,A=255) |
|
lightblueaccent1=(R=128,G=216,G=255,A=255) |
|
lightblueaccent2=(R=64,G=196,G=255,A=255) |
|
lightblueaccent3=(R=0,G=176,G=255,A=255) |
|
lightblueaccent4=(R=0,G=145,G=234,A=255) |
|
vuecyan=(R=0,G=188,G=212,A=255) |
|
cyanlighten5=(R=224,G=247,G=250,A=255) |
|
cyanlighten4=(R=178,G=235,G=242,A=255) |
|
cyanlighten3=(R=128,G=222,G=234,A=255) |
|
cyanlighten2=(R=77,G=208,G=225,A=255) |
|
cyanlighten1=(R=38,G=198,G=218,A=255) |
|
cyandarken1=(R=0,G=172,G=193,A=255) |
|
cyandarken2=(R=0,G=151,G=167,A=255) |
|
cyandarken3=(R=0,G=131,G=143,A=255) |
|
cyandarken4=(R=0,G=96,G=100,A=255) |
|
cyanaccent1=(R=132,G=255,G=255,A=255) |
|
cyanaccent2=(R=24,G=255,G=255,A=255) |
|
cyanaccent3=(R=0,G=229,G=255,A=255) |
|
cyanaccent4=(R=0,G=184,G=212,A=255) |
|
vueteal=(R=0,G=150,G=136,A=255) |
|
teallighten5=(R=224,G=242,G=241,A=255) |
|
teallighten4=(R=178,G=223,G=219,A=255) |
|
teallighten3=(R=128,G=203,G=196,A=255) |
|
teallighten2=(R=77,G=182,G=172,A=255) |
|
teallighten1=(R=38,G=166,G=154,A=255) |
|
tealdarken1=(R=0,G=137,G=123,A=255) |
|
tealdarken2=(R=0,G=121,G=107,A=255) |
|
tealdarken3=(R=0,G=105,G=92,A=255) |
|
tealdarken4=(R=0,G=77,G=64,A=255) |
|
tealaccent1=(R=167,G=255,G=235,A=255) |
|
tealaccent2=(R=100,G=255,G=218,A=255) |
|
tealaccent3=(R=29,G=233,G=182,A=255) |
|
tealaccent4=(R=0,G=191,G=165,A=255) |
|
vuegreen=(R=76,G=175,G=80,A=255) |
|
greenlighten5=(R=232,G=245,G=233,A=255) |
|
greenlighten4=(R=200,G=230,G=201,A=255) |
|
greenlighten3=(R=165,G=214,G=167,A=255) |
|
greenlighten2=(R=129,G=199,G=132,A=255) |
|
greenlighten1=(R=102,G=187,G=106,A=255) |
|
greendarken1=(R=67,G=160,G=71,A=255) |
|
greendarken2=(R=56,G=142,G=60,A=255) |
|
greendarken3=(R=46,G=125,G=50,A=255) |
|
greendarken4=(R=27,G=94,G=32,A=255) |
|
greenaccent1=(R=185,G=246,G=202,A=255) |
|
greenaccent2=(R=105,G=240,G=174,A=255) |
|
greenaccent3=(R=0,G=230,G=118,A=255) |
|
greenaccent4=(R=0,G=200,G=83,A=255) |
|
vuelightgreen=(R=139,G=195,G=74,A=255) |
|
lightgreenlighten5=(R=241,G=248,G=233,A=255) |
|
lightgreenlighten4=(R=220,G=237,G=200,A=255) |
|
lightgreenlighten3=(R=197,G=225,G=165,A=255) |
|
lightgreenlighten2=(R=174,G=213,G=129,A=255) |
|
lightgreenlighten1=(R=156,G=204,G=101,A=255) |
|
lightgreendarken1=(R=124,G=179,G=66,A=255) |
|
lightgreendarken2=(R=104,G=159,G=56,A=255) |
|
lightgreendarken3=(R=85,G=139,G=47,A=255) |
|
lightgreendarken4=(R=51,G=105,G=30,A=255) |
|
vuelime=(R=205,G=220,G=57,A=255) |
|
limelighten5=(R=249,G=251,G=231,A=255) |
|
limelighten4=(R=240,G=244,G=195,A=255) |
|
limelighten3=(R=230,G=238,G=156,A=255) |
|
limelighten2=(R=220,G=231,G=117,A=255) |
|
limelighten1=(R=212,G=225,G=87,A=255) |
|
limedarken1=(R=192,G=202,G=51,A=255) |
|
limedarken2=(R=175,G=180,G=43,A=255) |
|
limedarken3=(R=158,G=157,G=36,A=255) |
|
limedarken4=(R=130,G=119,G=23,A=255) |
|
limeaccent1=(R=244,G=255,G=129,A=255) |
|
limeaccent2=(R=238,G=255,G=65,A=255) |
|
limeaccent3=(R=198,G=255,G=0,A=255) |
|
limeaccent4=(R=174,G=234,G=0,A=255) |
|
vueyellow=(R=255,G=235,G=59,A=255) |
|
yellowlighten5=(R=255,G=253,G=231,A=255) |
|
yellowlighten4=(R=255,G=249,G=196,A=255) |
|
yellowlighten3=(R=255,G=245,G=157,A=255) |
|
yellowlighten2=(R=255,G=241,G=118,A=255) |
|
yellowlighten1=(R=255,G=238,G=88,A=255) |
|
yellowdarken1=(R=253,G=216,G=53,A=255) |
|
yellowdarken2=(R=251,G=192,G=45,A=255) |
|
yellowdarken3=(R=249,G=168,G=37,A=255) |
|
yellowdarken4=(R=245,G=127,G=23,A=255) |
|
yellowaccent1=(R=255,G=255,G=141,A=255) |
|
yellowaccent2=(R=255,G=255,G=0,A=255) |
|
yellowaccent3=(R=255,G=234,G=0,A=255) |
|
yellowaccent4=(R=255,G=214,G=0,A=255) |
|
amber=(R=255,G=193,G=7,A=255) |
|
vueamber=(R=255,G=193,G=7,A=255) |
|
amberlighten5=(R=255,G=248,G=225,A=255) |
|
amberlighten4=(R=255,G=236,G=179,A=255) |
|
amberlighten3=(R=255,G=224,G=130,A=255) |
|
amberlighten2=(R=255,G=213,G=79,A=255) |
|
amberlighten1=(R=255,G=202,G=40,A=255) |
|
amberdarken1=(R=255,G=179,G=0,A=255) |
|
amberdarken2=(R=255,G=160,G=0,A=255) |
|
amberdarken3=(R=255,G=143,G=0,A=255) |
|
amberdarken4=(R=255,G=111,G=0,A=255) |
|
amberaccent1=(R=255,G=229,G=127,A=255) |
|
amberaccent2=(R=255,G=215,G=64,A=255) |
|
amberaccent3=(R=255,G=196,G=0,A=255) |
|
amberaccent4=(R=255,G=171,G=0,A=255) |
|
vueorange=(R=255,G=152,G=0,A=255) |
|
orangelighten5=(R=255,G=243,G=224,A=255) |
|
orangelighten4=(R=255,G=224,B=178,A=255) |
|
orangelighten3=(R=255,G=204,B=128,A=255) |
|
orangelighten2=(R=255,G=183,B=77,A=255) |
|
orangelighten1=(R=255,G=167,B=38,A=255) |
|
orangedarken1=(R=251,G=140,B=0,A=255) |
|
orangedarken2=(R=245,G=124,B=0,A=255) |
|
orangedarken3=(R=239,G=108,B=0,A=255) |
|
orangedarken4=(R=230,G=81,B=0,A=255) |
|
orangeaccent1=(R=255,G=209,B=128,A=255) |
|
orangeaccent2=(R=255,G=171,B=64,A=255) |
|
orangeaccent3=(R=255,G=145,B=0,A=255) |
|
orangeaccent4=(R=255,G=109,B=0,A=255) |
|
deeporange=(R=255,G=87,B=34,A=255) |
|
vuedeeporange=(R=255,G=87,B=34,A=255) |
|
deeporangelighten5=(R=251,G=233,B=231,A=255) |
|
deeporangelighten4=(R=255,G=204,B=188,A=255) |
|
deeporangelighten3=(R=255,G=171,B=145,A=255) |
|
deeporangelighten2=(R=255,G=138,B=101,A=255) |
|
deeporangelighten1=(R=255,G=112,B=67,A=255) |
|
deeporangedarken1=(R=244,G=81,B=30,A=255) |
|
deeporangedarken2=(R=230,G=74,B=25,A=255) |
|
deeporangedarken3=(R=216,G=67,B=21,A=255) |
|
deeporangedarken4=(R=191,G=54,B=12,A=255) |
|
deeporangeaccent1=(R=255,G=158,B=128,A=255) |
|
deeporangeaccent2=(R=255,G=110,B=64,A=255) |
|
deeporangeaccent3=(R=255,G=61,B=0,A=255) |
|
deeporangeaccent4=(R=221,G=44,B=0,A=255) |
|
vuebrown=(R=121,G=85,B=72,A=255) |
|
brownlighten5=(R=239,G=235,B=233,A=255) |
|
brownlighten4=(R=215,G=204,B=200,A=255) |
|
brownlighten3=(R=188,G=170,B=164,A=255) |
|
brownlighten2=(R=161,G=136,B=127,A=255) |
|
brownlighten1=(R=141,G=110,B=99,A=255) |
|
browndarken1=(R=109,G=76,B=65,A=255) |
|
browndarken2=(R=93,G=64,B=55,A=255) |
|
browndarken3=(R=78,G=52,B=46,A=255) |
|
browndarken4=(R=62,G=39,B=35,A=255) |
|
bluegrey=(R=96,G=125,B=139,A=255) |
|
vuebluegrey=(R=96,G=125,B=139,A=255) |
|
bluegreylighten5=(R=236,G=239,B=241,A=255) |
|
bluegreylighten4=(R=207,G=216,B=220,A=255) |
|
bluegreylighten3=(R=176,G=190,B=197,A=255) |
|
bluegreylighten2=(R=144,G=164,B=174,A=255) |
|
bluegreylighten1=(R=120,G=144,B=156,A=255) |
|
bluegreydarken1=(R=84,G=110,B=122,A=255) |
|
bluegreydarken2=(R=69,G=90,B=100,A=255) |
|
bluegreydarken3=(R=55,G=71,B=79,A=255) |
|
bluegreydarken4=(R=38,G=50,B=56,A=255) |
|
grey=(R=158,G=158,B=158,A=255) |
|
vuegrey=(R=158,G=158,B=158,A=255) |
|
greylighten5=(R=250,G=250,B=250,A=255) |
|
greylighten4=(R=245,G=245,B=245,A=255) |
|
greylighten3=(R=238,G=238,B=238,A=255) |
|
greylighten2=(R=224,G=224,B=224,A=255) |
|
greylighten1=(R=189,G=189,B=189,A=255) |
|
greydarken1=(R=117,G=117,B=117,A=255) |
|
greydarken2=(R=97,G=97,B=97,A=255) |
|
greydarken3=(R=66,G=66,B=66,A=255) |
|
greydarken4=(R=33,G=33,G=33,A=255) |
|
shortColorTag=(char="0",color=(R=0,G=0,B=0,A=255)) |
|
shortColorTag=(char="1",color=(R=255,G=0,B=0,A=255)) |
|
shortColorTag=(char="2",color=(R=0,G=255,B=0,A=255)) |
|
shortColorTag=(char="3",color=(R=255,G=255,B=0,A=255)) |
|
shortColorTag=(char="4",color=(R=0,G=0,B=255,A=255)) |
|
shortColorTag=(char="5",color=(R=0,G=255,B=255,A=255)) |
|
shortColorTag=(char="6",color=(R=255,G=0,B=255,A=255)) |
|
shortColorTag=(char="7",color=(R=255,G=255,B=255,A=255)) |
|
shortColorTag=(char="8",color=(R=255,G=127,B=0,A=255)) |
|
shortColorTag=(char="9",color=(R=128,G=128,B=128,A=255)) |
|
shortColorTag=(char="r",color=(R=255,G=0,B=0,A=255)) |
|
shortColorTag=(char="g",color=(R=0,G=255,B=0,A=255)) |
|
shortColorTag=(char="b",color=(R=0,G=0,B=255,A=255)) |
|
shortColorTag=(char="p",color=(R=255,G=0,B=255,A=255)) |
|
shortColorTag=(char="y",color=(R=255,G=255,B=0,A=255)) |
|
shortColorTag=(char="o",color=(R=255,G=165,B=0,A=255)) |
|
shortColorTag=(char="c",color=(R=0,G=255,B=255,A=255)) |
|
shortColorTag=(char="w",color=(R=255,G=255,B=255,A=255)) |