m |
m (Changed the color when displaying C#) |
||
| Line 34: | Line 34: | ||
} | } | ||
| − | /* | + | /* Supprime le fond des blocs de code */ |
.syntaxhighlight { | .syntaxhighlight { | ||
| − | background | + | background: none !important; |
| − | + | ||
} | } | ||
| − | /* | + | /* Couleurs pour les différents éléments de C# basées sur le thème Mariana */ |
| − | . | + | |
| − | color: | + | /* Mots-clés (comme public, private, etc.) */ |
| + | .syntaxhighlight .kw1 { | ||
| + | color: #c594c5; /* rose pâle */ | ||
| + | } | ||
| + | |||
| + | /* Modificateurs (comme static, override, etc.) */ | ||
| + | .syntaxhighlight .kw3 { | ||
| + | color: #6699cc; /* bleu clair */ | ||
| + | } | ||
| + | |||
| + | /* Méthodes et variables de membre */ | ||
| + | .syntaxhighlight .me1 { | ||
| + | color: #6699cc; /* bleu clair */ | ||
| + | } | ||
| + | |||
| + | /* Constantes booléennes (true, false) et autres constantes intégrées */ | ||
| + | .syntaxhighlight .kw2 { | ||
| + | color: #f07178; /* rouge */ | ||
} | } | ||
| − | /* | + | /* Opérateurs (comme =, +, :, etc.) */ |
| − | . | + | .syntaxhighlight .sy0 { |
| − | color: | + | color: #f07178; /* rouge vif */ |
} | } | ||
| − | /* | + | /* Nombres */ |
| − | . | + | .syntaxhighlight .nu0 { |
| − | color: | + | color: #f99157; /* orange */ |
} | } | ||
| − | /* | + | /* Chaînes de caractères */ |
| − | . | + | .syntaxhighlight .st0 { |
| − | color: | + | color: #99c794; /* vert */ |
} | } | ||
| − | /* | + | /* Commentaires */ |
| − | . | + | .syntaxhighlight .co1 { |
| − | color: | + | color: #a6accd; /* bleu-gris */ |
} | } | ||
| − | /* | + | /* Types (comme int, string, etc.) */ |
| − | . | + | .syntaxhighlight .kw5 { |
| − | color: | + | color: #c594c5; /* rose pâle */ |
} | } | ||
| − | /* | + | /* Accolades, parenthèses, crochets */ |
| − | . | + | .syntaxhighlight .br0 { |
| − | color: | + | color: #f07178; /* rouge vif */ |
} | } | ||
| − | /* | + | /* Appels de méthodes */ |
| − | . | + | .syntaxhighlight .me2 { |
| − | color: | + | color: #6699cc; /* bleu clair */ |
} | } | ||
| − | /* | + | /* Punctuation (like ; , . etc.) */ |
| − | . | + | .syntaxhighlight .pun { |
| − | color: | + | color: #a6accd; /* bleu-gris */ |
} | } | ||
/* CSS placed here will be applied to all skins */ /* wikitable/prettytable */ table.wikitable, table.prettytable { margin: 13px 13px 13px 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; } .wikitable > tr > th, .wikitable > tr > td, .wikitable > * > tr > th, .wikitable > * > tr > td, .prettytable > tr > th, .prettytable > tr > td, .prettytable > * > tr > th, .prettytable > * > tr > td { border: 1px #aaa solid; padding: 3px; } .wikitable > tr > th, .wikitable > * > tr > th, .prettytable > tr > th, .prettytable > * > tr > th { background: #f2f2f2; text-align: center; } .wikitable > caption, .prettytable > caption { font-weight: bold; } /* style the backtick text */ .backtick-style { font-family: monospace; background-color: #f8f9fa; padding: 0.2em 0.4em; border: 1px solid #d1d5da; border-radius: 3px; } /* Supprime le fond des blocs de code */ .syntaxhighlight { background: none !important; } /* Couleurs pour les différents éléments de C# basées sur le thème Mariana */ /* Mots-clés (comme public, private, etc.) */ .syntaxhighlight .kw1 { color: #c594c5; /* rose pâle */ } /* Modificateurs (comme static, override, etc.) */ .syntaxhighlight .kw3 { color: #6699cc; /* bleu clair */ } /* Méthodes et variables de membre */ .syntaxhighlight .me1 { color: #6699cc; /* bleu clair */ } /* Constantes booléennes (true, false) et autres constantes intégrées */ .syntaxhighlight .kw2 { color: #f07178; /* rouge */ } /* Opérateurs (comme =, +, :, etc.) */ .syntaxhighlight .sy0 { color: #f07178; /* rouge vif */ } /* Nombres */ .syntaxhighlight .nu0 { color: #f99157; /* orange */ } /* Chaînes de caractères */ .syntaxhighlight .st0 { color: #99c794; /* vert */ } /* Commentaires */ .syntaxhighlight .co1 { color: #a6accd; /* bleu-gris */ } /* Types (comme int, string, etc.) */ .syntaxhighlight .kw5 { color: #c594c5; /* rose pâle */ } /* Accolades, parenthèses, crochets */ .syntaxhighlight .br0 { color: #f07178; /* rouge vif */ } /* Appels de méthodes */ .syntaxhighlight .me2 { color: #6699cc; /* bleu clair */ } /* Punctuation (like ; , . etc.) */ .syntaxhighlight .pun { color: #a6accd; /* bleu-gris */ }