From 8c40f684717c3deb127ac86f5485c3a45e7ef158 Mon Sep 17 00:00:00 2001 From: steveoh Date: Wed, 30 Oct 2024 19:10:35 -0600 Subject: [PATCH] style: add colors from their website and accent is complimentary --- tailwind.config.js | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index 8171980..257cf1a 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -3,7 +3,49 @@ export default { content: ['./node_modules/@ugrc/**/*.{tsx,jsx,js}', './index.html', './src/**/*.{tsx,jsx,js}'], theme: { extend: { + colors: { + primary: { + 50: '#FCF5F3', + 100: '#F9ECE6', + 200: '#F3D8CE', + 300: '#ECC2B1', + 400: '#E6AF99', + 500: '#E09B80', + 600: '#DA8868', + 700: '#D4754F', + 800: '#CD5F34', + 900: '#662F19', + 950: '#35180D', + }, + secondary: { + 50: '#F3F5F6', + 100: '#E8EBED', + 200: '#D1D6DC', + 300: '#BAC2CA', + 400: '#A0AAB6', + 500: '#8996A4', + 600: '#728292', + 700: '#5F6D7C', + 800: '#4D5864', + 900: '#262B31', + 950: '#14171A', + }, + accent: { + 50: '#EBF6FA', + 100: '#DAEEF6', + 200: '#B1DBEC', + 300: '#8CCAE3', + 400: '#63B8D9', + 500: '#3FA7D0', + 600: '#2C8EB4', + 700: '#226D8B', + 800: '#195066', + 900: '#0C2731', + 950: '#061319', + }, + }, fontFamily: { + utah: ['"Source Sans 3"', '"Source Sans Pro"', 'Helvetica', 'Arial', 'sans-serif'], heading: ['SourceSansPro-Black', 'Source Sans Pro', 'Arial', 'Helvetica', 'sans-serif'], }, },