diff --git a/src/App.tsx b/src/App.tsx index f18f2cd..c87d4ab 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,29 +4,30 @@ import {getmisskeycolors} from "./helpers.ts"; function App() { const [count, setCount] = createSignal(2); - const [message, setMessage] = createSignal("not valid colors"); + const [message, setMessage] = createSignal("generate something"); return ( <>
-
- number of colors: +
+ number of colors: setCount(Number(e.target.value))} min="2" />
-
- text: +
+
+ text:
@@ -39,7 +40,7 @@ function App() { class="m-2" >
- color: + color:
-
- {message()} + + +
+ {message()} +
+
) diff --git a/tailwind.config.js b/tailwind.config.js index a3ee00c..4d70de1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,7 +4,12 @@ export default { "./src/**/*.{js,jsx,ts,tsx}", ], theme: { - extend: {}, + extend: { + colors: { + primaryDark: "#2F2F3E", + primaryLight: "#B5B5EF", + } + }, }, plugins: [], }