Skip to content

Instantly share code, notes, and snippets.

View Christopher2K's full-sized avatar
🎯
Focusing

Christopher N. KATOYI Christopher2K

🎯
Focusing
View GitHub Profile
@Christopher2K
Christopher2K / code.js
Created July 15, 2020 22:27
Arrays with Javascript code snippets
// Snippets de code utilisés dans l'article
// 1.
let myArray = [];
// 2.
let myArray = [];
myArray.push("hello");
myArray.push("world");
myArray.push("today", "is", "a", "beautiful", "day", 44);
@Christopher2K
Christopher2K / colors.scss
Last active October 6, 2022 03:32
Tailwind sucks so I made a worse kit
@use "sass:color";
@use "sass:math";
@use "sass:map";
@use "theme";
@function generate_color_shades($base_color, $color_name) {
$colors: ();
$base_lightness: math.ceil(color.lightness($base_color));