Jump to content

MediaWiki:Common.css: Difference between revisions

From Knowledge Base
No edit summary
No edit summary
Line 5: Line 5:
}
}


/* Styling for C# data types */
/* Styling for C# types */
.csharp-data-type {
.csharp-type {
     color: DarkOrange;
     color: MediumOrchid;
     font-weight: bold;
     font-weight: bold;
}
/* Styling for C# operators */
.csharp-operator {
    color: MediumSeaGreen;
}
/* Styling for comments (both single-line and multi-line) */
.csharp-comment {
    color: Gray;
    font-style: italic;
}
/* Styling for C# strings */
.csharp-string {
    color: DarkOrchid;
}
}

Revision as of 11:12, 18 January 2025

/* Styling for C# keywords */
.csharp-keyword {
    color: DodgerBlue;
    font-weight: bold;
}

/* Styling for C# types */
.csharp-type {
    color: MediumOrchid;
    font-weight: bold;
}