mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 10:38:19 +00:00
33 lines
424 B
Plaintext
33 lines
424 B
Plaintext
/*
|
|
* Citizen - SMW jQuery Json View
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
.jsonview .prop {
|
|
color: @dark-text-100;
|
|
}
|
|
|
|
.jsonview .null {
|
|
color: @red-50;
|
|
}
|
|
|
|
.jsonview .undefined {
|
|
color: @red-50;
|
|
}
|
|
|
|
.jsonview .bool {
|
|
color: @accent-50;
|
|
}
|
|
|
|
.jsonview .num {
|
|
color: @accent-50;
|
|
}
|
|
|
|
.jsonview .string {
|
|
color: @green-50;
|
|
}
|
|
}
|