MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
color: DodgerBlue; | color: DodgerBlue; | ||
font-weight: bold; | font-weight: bold; | ||
} | |||
/* Styling for C# types (int, string, etc.) */ | |||
.csharp-type { | |||
color: DarkOrange; | |||
font-weight: bold; | |||
} | |||
/* Styling for C# variables */ | |||
.csharp-variable { | |||
color: MediumPurple; | |||
} | |||
/* Styling for comments (both single-line and multi-line) */ | |||
.csharp-comment { | |||
color: DarkGray; | |||
font-style: italic; | |||
} | |||
/* Styling for string literals */ | |||
.csharp-string { | |||
color: DarkGreen; | |||
font-style: italic; | |||
} | } | ||
Revision as of 11:05, 18 January 2025
/* Styling for C# keywords */
.csharp-keyword {
color: DodgerBlue;
font-weight: bold;
}
/* Styling for C# types (int, string, etc.) */
.csharp-type {
color: DarkOrange;
font-weight: bold;
}
/* Styling for C# variables */
.csharp-variable {
color: MediumPurple;
}
/* Styling for comments (both single-line and multi-line) */
.csharp-comment {
color: DarkGray;
font-style: italic;
}
/* Styling for string literals */
.csharp-string {
color: DarkGreen;
font-style: italic;
}