diff --git a/assets/sass/mat.sass b/assets/sass/mat.sass
index 968b091..6ace206 100644
--- a/assets/sass/mat.sass
+++ b/assets/sass/mat.sass
@@ -1,6 +1,7 @@
@import '~bulma/sass/utilities/initial-variables'
@import '~bulma/sass/utilities/functions'
+// v1
$pink: #f8a5c2
$pink-invert: findColorInvert($pink)
$purple: #786fa6
@@ -10,14 +11,28 @@ $blue-invert: findColorInvert($blue)
$charcoal: #3a435e
$charcoal-invert: findColorInvert($charcoal)
-$primary: $pink
-$primary-invert: $pink-invert
-$info: $blue
-$info-invert: $blue-invert
-$danger: $purple
-$danger-invert: $purple-invert
-$warning: $charcoal
-$warning-invert: $charcoal-invert
+// v(odka)2
+$soviet: #BD271A
+$soviet-invert: findColorInvert($soviet)
+$yellow: #FAD749
+$yellow-invert: findColorInvert($yellow)
+$gray: #C0BCB5
+$gray-invert: findColorInvert($gray)
+$green: #4A6C6F
+$green-invert: findColorInvert($green)
+$violet: #846075
+$violet-invert: findColorInvert($violet)
+
+$primary: $soviet
+$primary-invert: $soviet-invert
+$info: $green
+$info-invert: $green-invert
+$danger: $violet
+$danger-invert: $violet-invert
+$warning: $yellow
+$warning-invert: $yellow-invert
+$link: $danger
+$link-invert: $danger-invert
@import '~bulma/bulma'
diff --git a/components/Hero.vue b/components/Hero.vue
index 002c2c5..f1c4ac7 100644
--- a/components/Hero.vue
+++ b/components/Hero.vue
@@ -2,11 +2,11 @@
section.hero.is-primary.is-bold.is-medium(v-once)
.hero-body
.container
- h1.title matthew ess
- h2.subtitle software developer, social justice warrior, wannabe artist
+ h1.title.has-text-warning matthew ess
+ h2.subtitle.has-text-warning software developer, social justice warrior, wannabe artist
.hero-foot
.tabs.is-boxed.is-fullwidth.is-three-quarters
- ul.has-text-weight-semibold
+ ul.has-text-weight-semibold.has-text-warning
li
nuxt-link(to='/') home
li
diff --git a/pages/blog/_slug.vue b/pages/blog/_slug.vue
deleted file mode 100644
index 331f851..0000000
--- a/pages/blog/_slug.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-.post.has-text-centered-mobile
- h1.title {{ $route.params.slug }}
- hr
-
diff --git a/pages/blog/index.vue b/pages/blog/index.vue
deleted file mode 100644
index 4440fa2..0000000
--- a/pages/blog/index.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-#blog.has-text-centered-mobile
- h1.title the irregularly dumped contents of my head
- h2.subtitle coming soon
-