diff --git a/packages/nextjs/components/particleOptionsTSX.tsx b/packages/nextjs/components/particleOptionsTSX.tsx index 73c553d..cab4205 100644 --- a/packages/nextjs/components/particleOptionsTSX.tsx +++ b/packages/nextjs/components/particleOptionsTSX.tsx @@ -6,7 +6,7 @@ export const options: ISourceOptions = { zIndex: 0, }, background: { - image: "linear-gradient(19deg, #FFFFFF 0%, #93BBFB 100%)", + image: "linear-gradient(19deg, #34EEB6 0%, #7F5AF0 100%)", }, particles: { number: { @@ -37,7 +37,7 @@ export const options: ISourceOptions = { }, }, opacity: { - value: 0.25, + value: 0.5, random: true, anim: { enable: false, diff --git a/packages/nextjs/pages/builders/index.tsx b/packages/nextjs/pages/builders/index.tsx index 001b0c6..aaa389c 100644 --- a/packages/nextjs/pages/builders/index.tsx +++ b/packages/nextjs/pages/builders/index.tsx @@ -18,7 +18,7 @@ const BuilderPage: NextPage = () => { const builders = firstTimeCheckInEvents?.map(({ args: { builder } }) => builder); return ( -
No contracts found!
) : ( @@ -66,7 +66,7 @@ const Debug: NextPage = () => { > )}You can debug & interact with your deployed contracts here. diff --git a/packages/nextjs/pages/index.tsx b/packages/nextjs/pages/index.tsx index daa9587..a1feffe 100644 --- a/packages/nextjs/pages/index.tsx +++ b/packages/nextjs/pages/index.tsx @@ -29,7 +29,7 @@ const Home: NextPage = () => {
Tinker with your smart contract using the{" "} - + Debug Contract {" "} tab.
Explore your local transactions with the{" "} - + Block Explorer {" "} tab. diff --git a/packages/nextjs/tailwind.config.js b/packages/nextjs/tailwind.config.js index 99ddf87..262f68d 100644 --- a/packages/nextjs/tailwind.config.js +++ b/packages/nextjs/tailwind.config.js @@ -8,11 +8,11 @@ module.exports = { themes: [ { scaffoldEth: { - primary: "#93BBFB", - "primary-content": "#212638", - secondary: "#DAE8FF", + primary: "#7F5AF0", // Acidic purple + "primary-content": "#F9FBFF", + secondary: "#34EEB6", // Acidic blue "secondary-content": "#212638", - accent: "#93BBFB", + accent: "#FDD835", // Yellow "accent-content": "#212638", neutral: "#212638", "neutral-content": "#ffffff", @@ -21,9 +21,9 @@ module.exports = { "base-300": "#DAE8FF", "base-content": "#212638", info: "#93BBFB", - success: "#177E5F", + success: "#34EEB6", warning: "#FFCF72", - error: "#E00000", + error: "#FF8863", "--rounded-btn": "9999rem", @@ -40,16 +40,16 @@ module.exports = { }, { scaffoldEthDark: { - primary: "#212638", + primary: "#3a10bb", "primary-content": "#F9FBFF", - secondary: "#323f61", + secondary: "#FDD835", "secondary-content": "#F9FBFF", - accent: "#4969A6", + accent: "#FDD835", // Brighter yellow "accent-content": "#F9FBFF", neutral: "#F9FBFF", "neutral-content": "#385183", - "base-100": "#385183", - "base-200": "#2A3655", + "base-100": "#3a10bb", + "base-200": "#212638", "base-300": "#212638", "base-content": "#F9FBFF", info: "#385183", @@ -84,3 +84,4 @@ module.exports = { }, }, }; +