From 27aee8fc29c48b34068c546d5384802fc09aa0ed Mon Sep 17 00:00:00 2001 From: Teddy Bradford <3684553+teddybradford@users.noreply.github.com> Date: Mon, 19 Sep 2022 15:24:21 -0400 Subject: [PATCH] Replace color template literal with string (#9367) --- stubs/defaultConfig.stub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js index a01701def..c73bd5fcb 100644 --- a/stubs/defaultConfig.stub.js +++ b/stubs/defaultConfig.stub.js @@ -721,7 +721,7 @@ module.exports = { 8: '8px', }, ringColor: ({ theme }) => ({ - DEFAULT: theme(`colors.blue.500`, '#3b82f6'), + DEFAULT: theme('colors.blue.500', '#3b82f6'), ...theme('colors'), }), ringOffsetColor: ({ theme }) => theme('colors'),