diff --git a/core/modules/color/color.js b/core/modules/color/color.js
index 1a9d8a5..bf76d5c 100644
--- a/core/modules/color/color.js
+++ b/core/modules/color/color.js
@@ -95,10 +95,14 @@
        * @function Drupal.color~shift_color
        *
        * @param {string} given
+       *   A hex color code to shift.
        * @param {Array} ref1
+       *   Reference part 1. An array of HSL codes.
        * @param {Array} ref2
+       *   Reference part 2. An array of HLS codes.
        *
        * @return {string}
+       *   A hex color, shifted.
        */
       function shift_color(given, ref1, ref2) {
         var d;
@@ -143,9 +147,14 @@
        * Callback for Farbtastic when a new color is chosen.
        *
        * @param {HTMLElement} input
+       *   The input element for the color choosing.
        * @param {string} color
+       *   The color chosen
        * @param {bool} propagate
+       *   Whether or not to propagate the color to a locked pair value
        * @param {bool} colorScheme
+       *   Flag to indicate if the user is using a color scheme when changing
+       *   the color.
        */
       function callback(input, color, propagate, colorScheme) {
         var matched;
@@ -201,6 +210,7 @@
        * Focuses Farbtastic on a particular field.
        *
        * @param {jQuery.Event} e
+       *   The focus event on the field.
        */
       function focus(e) {
         var input = e.target;
diff --git a/core/modules/color/preview.js b/core/modules/color/preview.js
index 956b53e..5e9546a 100644
--- a/core/modules/color/preview.js
+++ b/core/modules/color/preview.js
@@ -1,3 +1,4 @@
+
 /**
  * @file
  * Attaches preview-related behavior for the Color module.
@@ -14,11 +15,17 @@
 
     /**
      * @param {Element} context
+     *   The context to initiate the color behaviour.
      * @param {object} settings
+     *   Settings for the color functionality.
      * @param {HTMLFormElement} form
+     *   The form to initiate the color behaviour on.
      * @param {object} farb
+     *   The farbtastic object.
      * @param {number} height
+     *   Height, in pixels.
      * @param {number} width
+     *   Width, in pixels.
      */
     callback: function (context, settings, form, farb, height, width) {
       var accum;
