From e3cd850df96037bea2ecb1f2d20a05b8e5b2fae7 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 22 Oct 2022 11:21:01 +0100 Subject: [PATCH] chore: use a different grey colour Use a different grey colour to make the site look more like the previous version. --- website/assets/tailwindcss/colours.cjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/assets/tailwindcss/colours.cjs b/website/assets/tailwindcss/colours.cjs index 943753a7..1d3e88fd 100644 --- a/website/assets/tailwindcss/colours.cjs +++ b/website/assets/tailwindcss/colours.cjs @@ -1,4 +1,4 @@ -let { gray } = require('tailwindcss/colors') +let colours = require('tailwindcss/colors') module.exports = { black: '#000', @@ -6,7 +6,7 @@ module.exports = { primary: '#24608A', }, current: 'currentColor', - gray, + gray: colours.stone, inherit: 'inherit', transparent: 'transparent', white: '#fff'