diff --git a/README.md b/README.md
index f93bb1d..52074c9 100644
--- a/README.md
+++ b/README.md
@@ -74,37 +74,6 @@ Vue.use(VueMaterial.mdSidenav)
Vue.use(VueMaterial.mdToolbar)
```
-To get Vue Material working properly, you'll need to configure and apply a default theme.
-
-``` javascript
-Vue.material.theme.register('default', {
- primary: 'cyan',
- accent: 'pink'
-})
-```
-
-Or you can register multiple themes at once.
-
-``` javascript
-Vue.material.theme.registerAll({
- default: {
- primary: 'cyan',
- accent: 'pink'
- },
- phone: {
- primary: 'indigo',
- accent: 'pink'
- }
-})
-```
-
-Apply your theme using v-md-theme directive:
-
-``` html
-