diff --git a/Resources/Plugins/design-revert/browser.js b/Resources/Plugins/design-revert/browser.js
index 29f3a4f0..2b8eeff3 100644
--- a/Resources/Plugins/design-revert/browser.js
+++ b/Resources/Plugins/design-revert/browser.js
@@ -15,6 +15,10 @@ enabled(){
       this.css.insert(".tweet-actions > li:nth-child(4) { margin-right: 2px !important; }");
     }
     
+    if (config.smallComposeTextSize){
+      this.css.insert(".compose-text { font-size: 12px !important; height: 120px !important; }");
+    }
+    
     if (config.revertConversationLinks){
       var footer = TD.mustaches["status/tweet_single_footer.mustache"];
       footer = footer.replace('txt-mute txt-size--12', 'txt-mute txt-small');
diff --git a/Resources/Plugins/design-revert/configuration.default.js b/Resources/Plugins/design-revert/configuration.default.js
index 0738edaa..b1507283 100644
--- a/Resources/Plugins/design-revert/configuration.default.js
+++ b/Resources/Plugins/design-revert/configuration.default.js
@@ -10,6 +10,11 @@
    */
   moveTweetActionsToRight: true,
   
+  /*
+   * Reverts New Tweet font size to a smaller one.
+   */
+  smallComposeTextSize: false,
+  
   /*
    * Reverts design changes to the 'View Conversation' and 'Details' links.
    */