m (.syntaxhighlight { color added) |
m |
||
| Line 34: | Line 34: | ||
} | } | ||
| − | /* | + | /* Couleurs de base pour le fond et le texte des blocs de code */ |
.syntaxhighlight { | .syntaxhighlight { | ||
| − | background-color: hsl(210, 15%, 22%); /* Couleur du fond */ | + | background-color: hsl(210, 15%, 22%); /* Couleur du fond (ex. : gris foncé) */ |
| − | color: hsl(219, 28%, 88%); /* Couleur générale du texte */ | + | color: hsl(219, 28%, 88%); /* Couleur générale du texte (ex. : blanc) */ |
} | } | ||
| − | /* | + | /* Styliser les mots-clés */ |
| − | . | + | .csharp.source-csharp .kw1 { |
| − | color: hsl( | + | color: hsl(300, 30%, 68%); /* Couleur pour les mots-clés (ex. : rose clair) */ |
} | } | ||
| − | /* | + | /* Styliser les chaînes de caractères */ |
| − | . | + | .csharp.source-csharp .st0 { |
| − | color: hsl(114, 31%, 68%); /* | + | color: hsl(114, 31%, 68%); /* Couleur pour les chaînes de caractères (ex. : vert clair) */ |
} | } | ||
| − | /* | + | /* Styliser les commentaires */ |
| − | . | + | .csharp.source-csharp .co1 { |
| − | color: hsl( | + | color: hsl(221, 12%, 69%); /* Couleur pour les commentaires (ex. : bleu clair) */ |
} | } | ||
| − | /* | + | /* Styliser les nombres */ |
| − | . | + | .csharp.source-csharp .nu0 { |
| − | color: hsl(32, 93%, 66%); /* | + | color: hsl(32, 93%, 66%); /* Couleur pour les nombres (ex. : orange vif) */ |
| − | + | ||
| − | + | ||
| − | + | ||
| − | . | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
} | } | ||
/* 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; } /* Couleurs de base pour le fond et le texte des blocs de code */ .syntaxhighlight { background-color: hsl(210, 15%, 22%); /* Couleur du fond (ex. : gris foncé) */ color: hsl(219, 28%, 88%); /* Couleur générale du texte (ex. : blanc) */ } /* Styliser les mots-clés */ .csharp.source-csharp .kw1 { color: hsl(300, 30%, 68%); /* Couleur pour les mots-clés (ex. : rose clair) */ } /* Styliser les chaînes de caractères */ .csharp.source-csharp .st0 { color: hsl(114, 31%, 68%); /* Couleur pour les chaînes de caractères (ex. : vert clair) */ } /* Styliser les commentaires */ .csharp.source-csharp .co1 { color: hsl(221, 12%, 69%); /* Couleur pour les commentaires (ex. : bleu clair) */ } /* Styliser les nombres */ .csharp.source-csharp .nu0 { color: hsl(32, 93%, 66%); /* Couleur pour les nombres (ex. : orange vif) */ }