diff --git a/README.txt b/README.txt
index 23c0678..b33f388 100644
--- a/README.txt
+++ b/README.txt
@@ -21,8 +21,8 @@ Manual installation:
  2.- Go to www.eyecon.ro/colorpicker/ and download colorpicker.zip.
       The library can also be found at https://github.com/jaypan/jquery_colorpicker
  3.- Extract the the zip file content to the
-      /libraries/jquery_colorpicker folder.
+      /libraries/colorpicker folder.
  4.- If you have extracted the contents correctly, the following file should
-      exist: /libraries/jquery_colorpicker/js/colorpicker.js
+      exist: /libraries/colorpicker/js/colorpicker.js
  5.- Install the module same as any other Drupal module
  6.- Enjoy your colors!!
diff --git a/jquery_colorpicker.install b/jquery_colorpicker.install
index 8525dfe..7b1e48c 100644
--- a/jquery_colorpicker.install
+++ b/jquery_colorpicker.install
@@ -13,7 +13,7 @@ function jquery_colorpicker_requirements($phase)
 	$requirements = [];
 	if($phase == 'install')
 	{
-		if(!file_exists(DRUPAL_ROOT . '/libraries/jquery_colorpicker/js/colorpicker.js'))
+		if(!file_exists(DRUPAL_ROOT . '/libraries/colorpicker/js/colorpicker.js'))
 		{
 			$requirements['jquery_colorpicker'] = [
 				'description' => t('The jQuery Colorpicker module requires the jQuery Colorpicker Library. See the README.txt file in the module folder for installation directions'),
diff --git a/jquery_colorpicker.libraries.yml b/jquery_colorpicker.libraries.yml
index 264d265..a3d00ac 100644
--- a/jquery_colorpicker.libraries.yml
+++ b/jquery_colorpicker.libraries.yml
@@ -2,9 +2,9 @@ library:
   version: 1.0.1
   css:
     theme:
-      /libraries/jquery_colorpicker/css/colorpicker.css: {}
+      /libraries/colorpicker/css/colorpicker.css: {}
   js:
-    /libraries/jquery_colorpicker/js/colorpicker.js: {}
+    /libraries/colorpicker/js/colorpicker.js: {}
   dependencies:
     - core/jquery
 
diff --git a/src/Element/JQueryColorpicker.php b/src/Element/JQueryColorpicker.php
index 51a3079..1105f6f 100644
--- a/src/Element/JQueryColorpicker.php
+++ b/src/Element/JQueryColorpicker.php
@@ -106,7 +106,7 @@ class JQueryColorpicker extends FormElement
 		$background = isset($element['#jquery_colorpicker_background']) && in_array($element['#jquery_colorpicker_background'], $backgrounds) ? $element['#jquery_colorpicker_background'] : 'select.png';
 
 		// Since we know the background, we can then get the URL of it to pass to the javascript function.
-		$background_url = file_create_url('libraries/jquery_colorpicker/images/' . $background);
+		$background_url = file_create_url('libraries/colorpicker/images/' . $background);
 
 		// Next we determine what the default value for the form element is. This will also be passed to the javascript function.
 		$element['#attached']['drupalSettings']['jqueryColorpicker']['elements'][$element['#id']]['background'] = $background_url;
