diff --git a/components/Meta.js b/components/Meta.js
index 7443fb5..4f1c234 100644
--- a/components/Meta.js
+++ b/components/Meta.js
@@ -1,10 +1,15 @@
import Head from 'next/head'
+import { THEMES } from '../lib/constants'
export default () => (
-
+ {
+ THEMES.map(theme => (
+
+ ))
+ }
diff --git a/lib/constants.js b/lib/constants.js
index 5864d89..617713b 100644
--- a/lib/constants.js
+++ b/lib/constants.js
@@ -53,7 +53,50 @@ export const THEMES = [
},
{
id: 'solarized',
- name: 'Solarized'
+ name: 'Solarized',
+ light: true
+ },
+ {
+ id: 'zenburn',
+ name: 'Zenburn'
+ },
+ {
+ id: 'yeti',
+ name: 'Yeti',
+ light: true
+ },
+ {
+ id: 'twilight',
+ name: 'Twilight'
+ },
+ {
+ id: 'paraiso-dark',
+ name: 'Paraiso'
+ },
+ {
+ id: 'monokai',
+ name: 'Monokai'
+ },
+ {
+ id: 'material',
+ name: 'Material'
+ },
+ {
+ id: 'isotope',
+ name: 'Isotope'
+ },
+ {
+ id: 'cobalt',
+ name: 'Cobalt'
+ },
+ {
+ id: 'oceanic',
+ name: 'Oceanic'
+ },
+ {
+ id: '3024-day',
+ name: '3024 Day',
+ light: true
}
]