From 741451271d4232eb9d8f09d661db614d43c15183 Mon Sep 17 00:00:00 2001 From: Jake Dexheimer Date: Sun, 23 Jul 2017 12:13:53 -0500 Subject: [PATCH] Better defaults --- components/Footer.js | 2 +- lib/constants.js | 2 +- pages/editor.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/Footer.js b/components/Footer.js index af5ec35..8f93028 100644 --- a/components/Footer.js +++ b/components/Footer.js @@ -6,7 +6,7 @@ const Footer = (props) => (
about - send feedback + send feedback tweet star
diff --git a/lib/constants.js b/lib/constants.js index 85f8ec9..a332d70 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -50,7 +50,7 @@ export const THEMES = [ export const LANGUAGES = [ { - name: 'Auto Detect' + name: 'Auto' }, { name: 'Plain Text' diff --git a/pages/editor.js b/pages/editor.js index d068bcc..f45b345 100644 --- a/pages/editor.js +++ b/pages/editor.js @@ -28,10 +28,10 @@ class Editor extends React.Component { constructor() { super() this.state = { - background: '#111111', + background: '#ABB8C3', theme: THEMES[0].id, language: 'javascript', // TODO LANGUAGES[0] - dropShadow: false, + dropShadow: true, windowControls: true, paddingVertical: '48px', paddingHorizontal: '32px'