diff --git a/lua/core/plugins/init.lua b/lua/core/plugins/init.lua
index 1ac706a3..83ce3144 100644
--- a/lua/core/plugins/init.lua
+++ b/lua/core/plugins/init.lua
@@ -53,6 +53,16 @@ local plugins = {
     opts = {}
   },
 
+  {
+    -- Theme inspired by Atom
+    'navarasu/onedark.nvim',
+    priority = 1000,
+    config = function()
+      vim.cmd.colorscheme 'onedark'
+    end,
+  },
+
+  --[[
   {
     -- Theme inspired by Atom
     'Mofiqul/dracula.nvim',
@@ -62,6 +72,7 @@ local plugins = {
       vim.cmd.colorscheme 'dracula'
     end,
   },
+  --]]
 
   'HiPhish/rainbow-delimiters.nvim',
 
@@ -71,7 +82,7 @@ local plugins = {
     dependencies = { 'nvim-tree/nvim-web-devicons' },
     opts = {
       options = {
-        theme = 'dracula',
+        theme = 'onedark',
         globalstatus = true,
       },
       sections = {
diff --git a/lua/core/plugins/todo-comments.lua b/lua/core/plugins/todo-comments.lua
index 5a5e0cc5..89b5bf9c 100644
--- a/lua/core/plugins/todo-comments.lua
+++ b/lua/core/plugins/todo-comments.lua
@@ -13,7 +13,8 @@ return {
   dependencies = { "nvim-lua/plenary.nvim" },
   lazy = false,
   config = function()
-    local colors = require('dracula').colors()
+    -- local colors = require('dracula').colors()
+    local colors = require('onedark.colors')
 
     require('todo-comments').setup({
       signs = true,      -- show icons in the signs column