Skip to content

Instantly share code, notes, and snippets.

@kajka
kajka / index.js
Created September 26, 2017 15:34
Firewatch the modification
// Syntax scheme
const backgroundColor = 'rgb(40, 44, 52, 1)';
const foregroundColor = '#d6e9ff';
const cursorColor = '#2C85F7';
const borderColor = '#323E4D';
const colors = {
black : backgroundColor,
red : '#e26b73',
green : '#6ac38a',
yellow : '#e6c176',
@kajka
kajka / index.js
Created September 26, 2017 08:44
Hyper personal theme
// Constants
const backgroundColor = 'rgb(40, 44, 52, 1)';
const foregroundColor = '#d6e9ff';
// Colors
const RED = '#e26b73';
const GREEN = '#6ac38a';
const YELLOW = '#e6c176';
const BLUE = '#5e9ccf';
const MAGENTA = '#df671f';
@kajka
kajka / .hyper.js
Last active June 10, 2018 12:08
Hyper config
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// Choose either "stable" for receiving highly polished,
// or "canary" for less polished but more frequent updates
updateChannel: 'stable',
@kajka
kajka / gulpfile.js
Created November 20, 2014 20:27
Simple Gulp.js configuration file for Ghost theme development.
var gulp = require('gulp'),
// autoprefixer = require('gulp-autoprefixer'),
// notify = require('gulp-notify'),
// plumber = require('gulp-plumber'),
// rename = require('gulp-rename'),
// rubySass = require('gulp-ruby-sass'),
// uglify = require('gulp-uglify'),
// watch = require('gulp-watch');
/* Load all plugins from package.json */