diff --git a/core/modules/color/migration_templates/d7_color.yml b/core/modules/color/migration_templates/d7_color.yml
new file mode 100644
index 0000000..f76b2e5
--- /dev/null
+++ b/core/modules/color/migration_templates/d7_color.yml
@@ -0,0 +1,14 @@
+id: d7_color
+label: Color
+migration_tags:
+  - Drupal 7
+source:
+  plugin: d7_color
+process:
+  value:
+    plugin: d7_color
+    source:
+      - name
+      - value
+destination:
+  plugin: d7_color
diff --git a/core/modules/color/src/Plugin/migrate/destination/d7/Color.php b/core/modules/color/src/Plugin/migrate/destination/d7/Color.php
new file mode 100644
index 0000000..60aa8b1
--- /dev/null
+++ b/core/modules/color/src/Plugin/migrate/destination/d7/Color.php
@@ -0,0 +1,52 @@
+<?php
+
+/**
+ * @file
+ * Contains  \Drupal\color\Plugin\migrate\destination\d7\color.
+ *
+ * Provides Color destination plugin.
+ */
+
+namespace Drupal\color\Plugin\migrate\destination\d7;
+
+use Drupal\migrate\Entity\MigrationInterface;
+use Drupal\migrate\Row;
+use Drupal\migrate\Plugin\migrate\destination\DestinationBase;
+
+/**
+ * Persist color data to the config system.
+ *
+ * @MigrateDestination(
+ *   id = "d7_color"
+ * )
+ */
+class Color extends DestinationBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function import(Row $row, array $old_destination_id_values = array()) {
+    foreach ($row->getRawDestination() as $key => $value) {
+      if (isset($value)) {
+        $config = \Drupal::configFactory()->getEditable($value[0]);
+        $config->set($value[1], $value[2]);
+      }
+    }
+    $config->save();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getIds() {
+    $ids['name']['type'] = 'string';
+    return $ids;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function fields(MigrationInterface $migration = NULL) {
+  }
+
+}
diff --git a/core/modules/color/src/Plugin/migrate/process/d7/Color.php b/core/modules/color/src/Plugin/migrate/process/d7/Color.php
new file mode 100644
index 0000000..078d7d3
--- /dev/null
+++ b/core/modules/color/src/Plugin/migrate/process/d7/Color.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\color\Plugin\migrate\process\d7\color.
+ */
+
+namespace Drupal\color\Plugin\migrate\process\d7;
+
+use Drupal\migrate\MigrateExecutableInterface;
+use Drupal\migrate\ProcessPluginBase;
+use Drupal\migrate\Row;
+
+/**
+ * Transform Drupal 7 color variable name.
+ *
+ * @MigrateProcessPlugin(
+ *   id = "d7_color"
+ * )
+ */
+class Color extends ProcessPluginBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
+    // Result array is configuration name, configuration sub element and value.
+    $x = explode('_', $value[0]);
+    $result[0] = 'color.theme.' . $x[1];
+    $result[1] = $x[2];
+    $result[2] = $value[1];
+    return $result;
+  }
+
+}
diff --git a/core/modules/color/src/Plugin/migrate/source/d7/Color.php b/core/modules/color/src/Plugin/migrate/source/d7/Color.php
new file mode 100644
index 0000000..5069704
--- /dev/null
+++ b/core/modules/color/src/Plugin/migrate/source/d7/Color.php
@@ -0,0 +1,50 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\color\Plugin\migrate\source\d7\Color.
+ */
+
+namespace Drupal\color\Plugin\migrate\source\d7;
+
+use Drupal\migrate_drupal\Plugin\migrate\source\VariableMultiRow;
+
+/**
+ * Drupal 7 color source from database.
+ *
+ * @MigrateSource(
+ *   id = "d7_color",
+ *   source_provider = "color"
+ * )
+ */
+class Color extends VariableMultiRow {
+
+  /**
+   * The variable names to fetch.
+   *
+   * @var array
+   */
+  protected $variables;
+
+  /**
+   * {@inheritdoc}
+   */
+  public function query() {
+    $query = $this->select('variable', 'v')
+        ->fields('v', array('name', 'value'))
+        ->condition('name', 'color_%', 'LIKE')
+        ->condition('name', 'color_%screenshot', 'NOT LIKE');
+    return $query;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function fields() {
+    return array(
+      'name' => $this->t('The name of the variable.'),
+      'value' => $this->t('The value of the variable.'),
+    );
+  }
+
+}
diff --git a/core/modules/color/src/Tests/Migrate/d7/MigrateColorTest.php b/core/modules/color/src/Tests/Migrate/d7/MigrateColorTest.php
new file mode 100644
index 0000000..90853ec
--- /dev/null
+++ b/core/modules/color/src/Tests/Migrate/d7/MigrateColorTest.php
@@ -0,0 +1,102 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\color\Tests\Migrate\d7\MigrateColorTest.
+ */
+
+namespace Drupal\color\Tests\Migrate\d7;
+
+use Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase;
+
+/**
+ * Tests migration of Color settings to configuration.
+ *
+ * @group color
+ */
+class MigrateColorTest extends MigrateDrupal7TestBase {
+
+  public static $modules = ['color'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->executeMigration('d7_color');
+  }
+
+  /**
+   * Tests migration of color's variables to configuration.
+   */
+  public function testMigrateColor() {
+    // Test Garland migration.
+    $files = [
+      'public://color/garland-b69cfcec/menu-collapsed.gif',
+      'public://color/garland-b69cfcec/menu-collapsed-rtl.gif',
+      'public://color/garland-b69cfcec/menu-expanded.gif',
+      'public://color/garland-b69cfcec/menu-leaf.gif',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/body.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-bar.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-bar-white.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-tab.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content-left.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content-right.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation-item.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation-item-hover.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/gradient-inner.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/logo.png',
+      '/var/www/drupal/sites/default/files/color/garland-b69cfcec/screenshot.png',
+      'public://color/garland-b69cfcec/style.css',
+      'public://color/garland-b69cfcec/style-rtl.css'
+    ];
+    $logo = 'public://color/garland-b69cfcec/logo.png';
+    $palette = [
+      'base' => '#d0cb9a',
+      'link' => '#917803',
+      'top' => '#efde01',
+      'bottom' => '#e6fb2d',
+      'text' => '#494949',
+    ];
+    $screenshot = '/var/www/drupal/sites/default/files/color/garland-b69cfcec/screenshot.png';
+    $stylesheets = [
+      'public://color/garland-b69cfcec/style.css',
+      'public://color/garland-b69cfcec/style-rtl.css'
+    ];
+
+    $config = $this->config('color.theme.garland');
+    $this->assertIdentical($files, $config->get('files'));
+    $this->assertIdentical($logo, $config->get('logo'));
+    $this->assertIdentical($palette, $config->get('palette'));
+    $this->assertIdentical(NULL, $config->get('screenshot'));
+    $this->assertIdentical($stylesheets, $config->get('stylesheets'));
+
+    // Test Bartik migration.
+    $palette = [
+      'top' => '#d0d0d0',
+      'bottom' => '#c2c4c5',
+      'bg' => '#ffffff',
+      'sidebar' => '#ffffff',
+      'sidebarborders' => '#cccccc',
+      'footer' => '#24272c',
+      'titleslogan' => '#000000',
+      'text' => '#4a4a4a',
+      'link' => '#019dbf',
+    ];
+
+    $logo = 'public://color/bartik-e0e23ad7/logo.png';
+    $stylesheets = ['public://color/bartik-e0e23ad7/colors.css'];
+    $files = [
+      'public://color/bartik-e0e23ad7/logo.png',
+      'public://color/bartik-e0e23ad7/colors.css'
+    ];
+    $config = $this->config('color.theme.bartik');
+    $this->assertIdentical($files, $config->get('files'));
+    $this->assertIdentical($logo, $config->get('logo'));
+    $this->assertIdentical($palette, $config->get('palette'));
+    $this->assertIdentical($stylesheets, $config->get('stylesheets'));
+  }
+
+}
diff --git a/core/modules/color/tests/src/Unit/Plugin/migrate/process/d7/ColorTest.php b/core/modules/color/tests/src/Unit/Plugin/migrate/process/d7/ColorTest.php
new file mode 100644
index 0000000..1ee7702
--- /dev/null
+++ b/core/modules/color/tests/src/Unit/Plugin/migrate/process/d7/ColorTest.php
@@ -0,0 +1,54 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Tests\color\Unit\Plugin\migrate\process\d7\ColorTest.
+ */
+
+namespace Drupal\Tests\color\Unit\Plugin\migrate\process;
+
+use Drupal\color\Plugin\migrate\process\d7\Color;
+use Drupal\Core\Extension\ModuleHandlerInterface;
+use Drupal\migrate\Plugin\MigrateProcessInterface;
+use Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase;
+
+/**
+ * Tests the d7_color process plugin.
+ *
+ * @group color
+ */
+class ColorTest extends MigrateProcessTestCase {
+
+  /**
+   * The module handler.
+   *
+   * @var \Drupal\Core\Extension\ModuleHandlerInterface
+   */
+  protected $moduleHandler;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->moduleHandler = $this->prophesize(ModuleHandlerInterface::class);
+    $migration_plugin = $this->prophesize(MigrateProcessInterface::class);
+    $this->plugin = new Color([], 'color', [], $this->moduleHandler->reveal(), $migration_plugin->reveal());
+  }
+
+  /**
+   * Test the transform process.
+   */
+  public function testTransform() {
+    $source[0] = 'color_bartik_stylesheets';
+    $source[1] = 'public://color/bartik-e0e23ad7/colors.css';
+
+    $result[0] = 'color.theme.bartik';
+    $result[1] = 'stylesheets';
+    $result[2] = 'public://color/bartik-e0e23ad7/colors.css';
+
+    $transformed_value = $this->plugin->transform($source, $this->migrateExecutable, $this->row, 'destinationproperty');
+    $this->assertSame($result, $transformed_value);
+  }
+
+}
diff --git a/core/modules/color/tests/src/Unit/Plugin/migrate/source/d7/ColorTest.php b/core/modules/color/tests/src/Unit/Plugin/migrate/source/d7/ColorTest.php
new file mode 100644
index 0000000..c9f7a53
--- /dev/null
+++ b/core/modules/color/tests/src/Unit/Plugin/migrate/source/d7/ColorTest.php
@@ -0,0 +1,81 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Tests\color\Unit\Plugin\migrate\source\d7\ColorTest.
+ */
+
+namespace Drupal\Tests\color\Unit\Plugin\migrate\source\d7;
+
+use Drupal\Tests\migrate\Unit\MigrateSqlSourceTestCase;
+
+/**
+ * Tests D7 color source plugin.
+ *
+ * @group color
+ */
+class ColorTest extends MigrateSqlSourceTestCase {
+
+  const PLUGIN_CLASS = 'Drupal\color\Plugin\migrate\source\d7\Color';
+
+  protected $migrationConfiguration = [
+    'id' => 'test',
+    'source' => [
+      'plugin' => 'd7_color',
+    ],
+  ];
+  protected $expectedResults = [
+    [
+      'name' => 'color_bartik_palette',
+      'value' => [
+        'top' => '#cd2d2d',
+        'bottom' => '#d64e4e',
+        'bg' => '#ffffff',
+        'sidebar' => '#f1f4f0',
+        'sidebarborders' => '#ededed',
+        'footer' => '#1f1d1c',
+        'titleslogan' => '#fffeff',
+        'text' => '#888888',
+        'link' => '#d6121f',
+      ]
+    ],
+    [
+      'name' => 'color_bartik_logo',
+      'value' => 'public://color/bartik-e0e23ad7/logo.png',
+    ],
+    [
+      'name' => 'color_bartik_stylesheets',
+      'value' => [
+        0 => 'public://color/bartik-1d249313/colors.css',
+      ]
+    ],
+    [
+      'name' => 'color_bartik_files',
+      'value' => [
+        0 => 'public://color/bartik-e0e23ad7/logo.png',
+        1 => 'public://color/bartik-e0e23ad7/colors.css'
+      ],
+    ],
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    $this->databaseContents['variable'] = $this->expectedResults;
+    $this->databaseContents['variable'] += [
+      [
+        'name' => 'color_bartik_screenshot',
+        'value' => [
+          0 => 'public:://color/bartik-b69cfcec/screenshot.png',
+        ]
+      ]
+    ];
+    var_dump($this->databaseContents['variable']);
+    foreach ($this->databaseContents['variable'] as $key => $expected) {
+      $this->databaseContents['variable'][$key]['value'] = serialize($expected['value']);
+    }
+    parent::setUp();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/tests/fixtures/drupal7.php b/core/modules/migrate_drupal/tests/fixtures/drupal7.php
index c1480c1..9355295 100644
--- a/core/modules/migrate_drupal/tests/fixtures/drupal7.php
+++ b/core/modules/migrate_drupal/tests/fixtures/drupal7.php
@@ -40736,6 +40736,43 @@
   'value',
 ))
 ->values(array(
+    'name' => 'color_bartik_files',
+    'value' => 'a:2:{i:0;s:39:"public://color/bartik-e0e23ad7/logo.png";i:1;s:41:"public://color/bartik-e0e23ad7/colors.css";}',
+))
+->values(array(
+    'name' => 'color_bartik_logo',
+    'value' => 's:39:"public://color/bartik-e0e23ad7/logo.png"',
+))
+->values(array(
+  'name' => 'color_bartik_palette',
+  'value' => 'a:9:{s:3:"top";s:7:"#d0d0d0";s:6:"bottom";s:7:"#c2c4c5";s:2:"bg";s:7:"#ffffff";s:7:"sidebar";s:7:"#ffffff";s:14:"sidebarborders";s:7:"#cccccc";s:6:"footer";s:7:"#24272c";s:11:"titleslogan";s:7:"#000000";s:4:"text";s:7:"#4a4a4a";s:4:"link";s:7:"#019dbf";}',
+))
+->values(array(
+  'name' => 'color_bartik_stylesheets',
+  'value' => 'a:1:{i:0;s:41:"public://color/bartik-e0e23ad7/colors.css";}',
+))
+->values(array(
+    'name' => 'color_garland_files',
+    'value' => 'a:19:{i:0;s:50:"public://color/garland-b69cfcec/menu-collapsed.gif";i:1;s:54:"public://color/garland-b69cfcec/menu-collapsed-rtl.gif";i:2;s:49:"public://color/garland-b69cfcec/menu-expanded.gif";i:3;s:45:"public://color/garland-b69cfcec/menu-leaf.gif";i:4;s:67:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/body.png";i:5;s:69:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-bar.png";i:6;s:75:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-bar-white.png";i:7;s:69:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-tab.png";i:8;s:76:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation.png";i:9;s:78:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content-left.png";i:10;s:79:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content-right.png";i:11;s:73:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-content.png";i:12;s:81:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation-item.png";i:13;s:87:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/bg-navigation-item-hover.png";i:14;s:77:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/gradient-inner.png";i:15;s:67:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/logo.png";i:16;s:73:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/screenshot.png";i:17;s:41:"public://color/garland-b69cfcec/style.css";i:18;s:45:"public://color/garland-b69cfcec/style-rtl.css";}',
+))
+->values(array(
+    'name' => 'color_garland_logo',
+    'value' => 's:40:"public://color/garland-b69cfcec/logo.png";'
+))
+->values(array(
+  'name' => 'color_garland_palette',
+  'value' => 'a:5:{s:4:"base";s:7:"#d0cb9a";s:4:"link";s:7:"#917803";s:3:"top";s:7:"#efde01";s:6:"bottom";s:7:"#e6fb2d";s:4:"text";s:7:"#494949";}',
+))
+->values(array(
+  'name' => 'color_garland_screenshot',
+  'value' => 's:73:"/var/www/drupal/sites/default/files/color/garland-b69cfcec/screenshot.png";'
+))
+->values(array(
+  'name' => 'color_garland_stylesheets',
+  'value' => 'a:2:{i:0;s:41:"public://color/garland-b69cfcec/style.css";i:1;s:45:"public://color/garland-b69cfcec/style-rtl.css";}',
+))
+
+->values(array(
   'name' => 'additional_settings__active_tab_article',
   'value' => 's:15:"edit-submission";',
 ))
