Skip to content

Instantly share code, notes, and snippets.

@smlombardi
smlombardi / code_styles.json
Last active April 3, 2020 13:51
VScode font styles overrides for any theme
{
"name": "ITALIC",
"scope": [
"abstract.definition.fsharp entity",
"abstract.definition.fsharp keyword",
"comment.block.documentation storage.type.class",
"comment.block.documentation.phpdoc.php keyword",
"comment.block.documentation.scala keyword",
"comment.block.documentation.scala variable.parameter",
"comment.block.javadoc.java keyword",
// Place your settings in this file to overwrite the default settings
{
"css.validate": false,
"editor.cursorBlinking": "phase",
"editor.detectIndentation": true,
"editor.dragAndDrop": true,
"editor.fontFamily": "operator mono",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.formatOnType": true,
"workbench.experimental.colorCustomizations": {
"activeTabBackground": "#24292A",
"activityBadgeBackground": "#DA6771",
"activityBadgeForeground": "#24292A",
"activityBarBackground": "#3C4140",
"editorBackground": "#24292A",
"editorCurrentFindMatchHighlight":"#ff777780",
"editorFindMatchHighlight":"#cb606080",
"editorLineNumbers": "#616B69",
"editorRangeHighlight":"#263040",
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to make opened Markdown files always be soft wrapped:
#
# path = require 'path'
#
@smlombardi
smlombardi / dabblet.css
Created March 28, 2016 16:02 — forked from LeaVerou/dabblet.css
HSL clock
/**
* HSL clock
*/
height: 100%;
font: bold 5em/1 Helvetica Neue, sans-serif;
display: flex;
text-align: center;
align-items: center;
justify-content: center;
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
@smlombardi
smlombardi / 0_reuse_code.js
Last active August 29, 2015 14:19
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@smlombardi
smlombardi / SassMeister-input.scss
Last active August 29, 2015 14:19
color palette sass map and function
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$pbcolors: (
pbcyan : (
50: #E5F5FC,
100: #CCEBF9,
@smlombardi
smlombardi / SassMeister-input.scss
Created March 9, 2015 19:24
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
//PRIMARY
$pb-cyan: rgb(0, 155, 223);
$pb-medium-blue: rgb(0, 130, 213);
$pb-blue: rgb(62, 83, 164);
$pb-purple: rgb(160, 63, 155);