Hi,
The blueish background used in the <code>
block is a special design choice. It’s way to light to allow good contrast.
' Sample VBS Script
Dim userName
userName = InputBox("Entrez votre nom:", "Bienvenue")
If userName <> "" Then
MsgBox "Bonjour, " & userName & "!", vbInformation, "Salutation"
Else
MsgBox "Vous n'avez pas entré de nom.", vbExclamation, "Erreur"
End If
// Sample JS Script
let userName = prompt("Entrez votre nom:", "Bienvenue");
if (userName !== null && userName !== "") {
alert("Bonjour, " + userName + "!");
} else {
alert("Vous n'avez pas entré de nom.");
}
Any way to improve that for everyone or should I rely on stylus to customize this for my own taste (which would be totally ok)?