This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sayHello(name) { | |
console.count(name) | |
} | |
sayHello("Indrek") | |
sayHello("William") | |
sayHello("Kelly") | |
sayHello("Indrek") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sayHello(name) { | |
console.count() | |
console.log(name) | |
} | |
sayHello("Indrek") | |
sayHello("William") | |
sayHello("Kelly") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sayHello(name) { | |
console.count() | |
console.log(name) | |
} | |
sayHello("Indrek") | |
sayHello("William") | |
sayHello("Kelly") | |
@indreklasn | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sayHello(name) { | |
console.count() | |
console.log(name) | |
} | |
sayHello("Indrek") | |
sayHello("William") | |
sayHello("Kelly") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sayHello(name) { | |
console.log(name) | |
} | |
sayHello('Indrek') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--background-color: rgb(240, 240, 240); | |
--text-color: rgb(15, 15, 15); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--background-color: rgb(40, 44, 53); | |
--text-color: rgb(240, 240, 240); | |
} | |
.icon { | |
filter: invert(100%); | |
} | |
/* If no dark mode user agent stylesheet exists, emulate it */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--background-color: rgb(40, 44, 53); | |
--text-color: rgb(240, 240, 240); | |
} | |
.icon { | |
filter: invert(100%); | |
} | |
/* If no dark mode user agent stylesheet exists, emulate it */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
color-scheme: dark light; /* stylelint-disable-line property-no-unknown */ | |
--heading-color: red; | |
--duration: 0.5s; | |
--timing: ease; | |
} | |
*, | |
::before, | |
::after { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<link rel="stylesheet" href="common.css" /> | |
<link | |
rel="stylesheet" | |
href="light.css" | |
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" | |
/> | |
<link |