wpcom-colors.php 288 B

12345678910111213
  1. <?php declare( strict_types = 1 ); ?>
  2. <?php
  3. require_once __DIR__ . '/wpcom-colors-utils.php';
  4. seedlet_define_color_annotations(
  5. array(
  6. 'background' => '#FFFFFF',
  7. 'foreground' => '#444444',
  8. 'primary' => '#000000',
  9. 'secondary' => '#3C8067',
  10. 'tertiary' => '#FAFBF6',
  11. )
  12. );