From 92581e8d6e88da1da32158c13ed46d3cb6d92f0d Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Fri, 10 Feb 2023 11:05:02 -0500 Subject: [PATCH] Update blue color theme Rename globals.css --- src/images/icons/question-mark.svg | 2 +- src/pages/_app.tsx | 2 +- src/styles/{globals.css => global.css} | 0 tailwind.config.js | 21 ++++++++++----------- 4 files changed, 12 insertions(+), 13 deletions(-) rename src/styles/{globals.css => global.css} (100%) diff --git a/src/images/icons/question-mark.svg b/src/images/icons/question-mark.svg index c5921de..780fd75 100644 --- a/src/images/icons/question-mark.svg +++ b/src/images/icons/question-mark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index ce44f51..66b4e16 100755 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -17,7 +17,7 @@ import { ErrorBoundary } from '../components/errors/ErrorBoundary'; import { AppLayout } from '../components/layout/AppLayout'; import { config } from '../consts/config'; import '../styles/fonts.css'; -import '../styles/globals.css'; +import '../styles/global.css'; import { useIsSsr } from '../utils/ssr'; // const { chains, provider } = configureChains(prodAndTestChains, [publicProvider()]); diff --git a/src/styles/globals.css b/src/styles/global.css similarity index 100% rename from src/styles/globals.css rename to src/styles/global.css diff --git a/tailwind.config.js b/tailwind.config.js index 58c2c71..86f4f54 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,7 +2,6 @@ const defaultTheme = require('tailwindcss/defaultTheme') - module.exports = { content: ['./src/**/*.{js,ts,jsx,tsx}'], theme: { @@ -20,16 +19,16 @@ module.exports = { black: '#010101', white: '#ffffff', blue: { - 50: '#E9F0F7', - 100: '#CCDEEC', - 200: '#99BDD9', - 300: '#679CC6', - 400: '#347AB3', - 500: '#025AA1', - 600: '#014880', - 700: '#013660', - 800: '#002440', - 900: '#001220', + 50: '#C7D9F5', + 100: '#A6C3EF', + 200: '#85ADE9', + 300: '#6396E3', + 400: '#4280DD', + 500: '#2362C1', + 600: '#205AB0', + 700: '#1A498F', + 800: '#14386E', + 900: '#0E274D', }, beige: { 100: '#F6F4F1',