diff --git a/lua/cosmic/theme/integrated/enfocado.lua b/lua/cosmic/theme/integrated/enfocado.lua
index ee74b52..7c55af9 100644
--- a/lua/cosmic/theme/integrated/enfocado.lua
+++ b/lua/cosmic/theme/integrated/enfocado.lua
@@ -25,8 +25,8 @@ local theme = {
 
 local colors = {
   white = theme.dim_0,
-  bg = theme.bg_2,
-  bg_highlight = theme.bg_1,
+  bg = theme.bg_1,
+  bg_highlight = theme.bg_2,
   normal = theme.dim_0,
   insert = theme.dim_0,
   command = theme.dim_0,
@@ -35,13 +35,12 @@ local colors = {
   diffAdd = theme.green,
   diffModified = theme.yellow,
   diffDeleted = theme.red,
-  trace = theme.br_orange,
+  trace = theme.br_magenta,
   hint = theme.br_blue,
   info = theme.br_yellow,
   error = theme.br_red,
   warn = theme.br_orange,
-  floatBorder = theme.cyan,
-  selection_caret = theme.cyan,
-  notify_bg = theme.bg_1
+  floatBorder = theme.fg_0,
+  selection_caret = theme.fg_0,
 }
 return colors
diff --git a/lua/cosmic/theme/plugins.lua b/lua/cosmic/theme/plugins.lua
index 978a52c..7eaad89 100644
--- a/lua/cosmic/theme/plugins.lua
+++ b/lua/cosmic/theme/plugins.lua
@@ -110,6 +110,20 @@ function M.init(use, config)
     as = 'enfocado',
     config = function()
       vim.g.enfocado_style = 'nature'
+      vim.g.enfocado_plugins = {
+        'cmp',
+        'dashboard',
+        'floaterm',
+        'gitsigns',
+        'lsp',
+        'lsp-installer',
+        'notify',
+        'packer',
+        'telescope',
+        'todo-comments',
+        'tree',
+        'treesitter'
+      }
       vim.cmd('autocmd VimEnter * ++nested colorscheme enfocado')
     end,
     disable = config.theme ~= 'enfocado',