Difference between revisions of "Common.css"
(Blanked the page) Tag: Blanking |
Stratonian (talk | contribs) (Added common colors) |
||
Line 1: | Line 1: | ||
+ | body { | ||
+ | /* NPC colors */ | ||
+ | --NPC--ally: #169011; | ||
+ | --NPC--neutral: #df8234; | ||
+ | --NPC--enemy: #af211d; | ||
+ | |||
+ | /* class colors */ | ||
+ | --hero--bomber: #fb5f5f; | ||
+ | --hero--champion: #9557cc; | ||
+ | --hero--mercenary: #b23f1d; | ||
+ | --hero--pain-reaper: #381539; | ||
+ | --hero--paladin: #b46f08; /* adjusted */ | ||
+ | --hero--warmonger: #b8312f; | ||
+ | |||
+ | /* quality colors */ | ||
+ | --quality--common: #9e98a0; /* adjusted */ | ||
+ | --quality--uncommon: #af211d; | ||
+ | --quality--rare: #187c9d; | ||
+ | --quality--epic: #93408c; | ||
+ | --quality--legendary: #c4a00f; /* adjusted */ | ||
+ | } | ||
+ | /* CLASS COLORS */ | ||
+ | .bomber { background-color: var(--hero--bomber); } | ||
+ | .champion { background-color: var(--hero--champion); } | ||
+ | .pain.reaper { background-color: var(--hero--pain-reaper); } | ||
+ | .paladin { background-color: var(--hero-paladin); } | ||
+ | .warmonger { background-color: var(--hero-warmonger); } |
Revision as of 17:15, 27 February 2023
body { /* NPC colors */ --NPC--ally: #169011; --NPC--neutral: #df8234; --NPC--enemy: #af211d; /* class colors */ --hero--bomber: #fb5f5f; --hero--champion: #9557cc; --hero--mercenary: #b23f1d; --hero--pain-reaper: #381539; --hero--paladin: #b46f08; /* adjusted */ --hero--warmonger: #b8312f; /* quality colors */ --quality--common: #9e98a0; /* adjusted */ --quality--uncommon: #af211d; --quality--rare: #187c9d; --quality--epic: #93408c; --quality--legendary: #c4a00f; /* adjusted */ } /* CLASS COLORS */ .bomber { background-color: var(--hero--bomber); } .champion { background-color: var(--hero--champion); } .pain.reaper { background-color: var(--hero--pain-reaper); } .paladin { background-color: var(--hero-paladin); } .warmonger { background-color: var(--hero-warmonger); }