Skip to content

Instantly share code, notes, and snippets.

View benajaero's full-sized avatar

ben ajaero benajaero

View GitHub Profile
@benajaero
benajaero / dark-ocean-theme.postcss
Created May 25, 2023 17:19
Dark Blue Ocean Skeleton Theme
:root {
/* =~= Theme Properties =~= */
--theme-font-family-base: system-ui;
--theme-font-family-heading: system-ui;
--theme-font-color-base: 0 0 0;
--theme-font-color-dark: 255 255 255;
--theme-rounded-base: 9999px;
--theme-rounded-container: 8px;
--theme-border-base: 1px;
@benajaero
benajaero / my-skeleton-pink-city-theme.postcss
Created May 25, 2023 14:44
My Skeleton Pink City Theme
:root {
/* =~= Theme Properties =~= */
--theme-font-family-base: system-ui;
--theme-font-family-heading: system-ui;
--theme-font-color-base: 0 0 0;
--theme-font-color-dark: 255 255 255;
--theme-rounded-base: 9999px;
--theme-rounded-container: 8px;
--theme-border-base: 1px;
@benajaero
benajaero / mathwork.cpp
Last active July 28, 2017 01:16
A little library I made for my maths homework because I'm lazy
#include <cmath>
#include <iostream>
struct Point {
double x;
double y;
};
double distLength(struct Point point1,struct Point point2) {
double xlength = point1.x - point2.x, ylength = point1.y - point2.y;
// ==UserScript==
// @name Scrollable Scratch Signatures
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @updateURL https://gist.githubusercontent.com/Blaze349/eb8eade386c0380e8e5fbec0d87a9283/raw/6adb2ade07eebb404f958a3ff274affb6ffaccdf/scrollablescratch.js
// @match https://scratch.mit.edu/*
// @grant none
// ==/UserScript==