From fc99015393d59f82612cc4c4d82efc96bd72fc23 Mon Sep 17 00:00:00 2001 From: Travis Arnold Date: Sun, 29 Apr 2018 16:23:25 -0700 Subject: [PATCH] swap example theme colors (#851) --- examples/context/theme-detailed-theme-context.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/context/theme-detailed-theme-context.js b/examples/context/theme-detailed-theme-context.js index b8e924d2..5485472a 100644 --- a/examples/context/theme-detailed-theme-context.js +++ b/examples/context/theme-detailed-theme-context.js @@ -1,12 +1,12 @@ export const themes = { light: { - foreground: '#ffffff', - background: '#222222', - }, - dark: { foreground: '#000000', background: '#eeeeee', }, + dark: { + foreground: '#ffffff', + background: '#222222', + }, }; // highlight-range{1-3}