Jekyll Codetheme

Codetheme is a theme that aim to look like vscode with color, font…

Made by @mathias for #tonic


code highlights

# Python
print("Hello World!")

you = 9
def greet(name):
    print(f"Hello {name}!")
    
greet(you)
// Javascript
console.log("Hello World");

let you = 9;
function greet(name) {
    console.log(`Hello ${name}!`);
}
greet(you);

blockquote like github alerts

Useful information that users should know, even when skimming content.

Helpful advice for doing things better or more easily.

Key information users need to know to achieve their goal.

Urgent info that needs immediate user attention to avoid problems.

Advises about risks or negative outcomes of certain actions.