aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/build-theme-info.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/build-theme-info.js')
-rw-r--r--src/scripts/build-theme-info.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/build-theme-info.js b/src/scripts/build-theme-info.js
index 2109414c8..cff33e3c4 100644
--- a/src/scripts/build-theme-info.js
+++ b/src/scripts/build-theme-info.js
@@ -6,11 +6,12 @@
6const css = require('css'); 6const css = require('css');
7const fs = require('fs-extra'); 7const fs = require('fs-extra');
8const path = require('path'); 8const path = require('path');
9const theme = require('@meetfranz/theme');
9 10
10// Colors that should be replaced with the accent color 11// Colors that should be replaced with the accent color
11const accentColors = [ 12const accentColors = [
13 theme.DEFAULT_ACCENT_COLOR.toLowerCase(),
12 '#7367f0', 14 '#7367f0',
13 '#7266F0',
14 '#5e50ee', 15 '#5e50ee',
15]; 16];
16 17