feature: more colors

main
TZGyn 3 years ago
parent fec26dc30a
commit f12e78c706

@ -24,6 +24,8 @@ export default defineNuxtConfig({
colors: { colors: {
primary: '#0c0c0d', primary: '#0c0c0d',
secondary: '#18181b', secondary: '#18181b',
darkgray: '#121213',
lightgray: '#27272a',
}, },
}, },
}, },

@ -7,7 +7,7 @@
<label class="w-full text-[#b3b3b3]"> Email </label> <label class="w-full text-[#b3b3b3]"> Email </label>
<input <input
type="text" type="text"
class="h-12 w-full rounded-md border border-[#373737] bg-[#2b2b2b] p-4 text-lg placeholder:text-[#4f4f4f] focus:outline-none active:outline-none" class="bg-lightgray border-lightgray h-12 w-full rounded-md border p-4 text-lg placeholder:text-[#4f4f4f] focus:outline-none active:outline-none"
v-model="credential.email" v-model="credential.email"
placeholder="username" /> placeholder="username" />
</div> </div>
@ -15,7 +15,7 @@
<label class="w-full text-[#b3b3b3]"> Password </label> <label class="w-full text-[#b3b3b3]"> Password </label>
<input <input
type="password" type="password"
class="h-12 w-full rounded-md border border-[#373737] bg-[#2b2b2b] p-4 text-lg placeholder:text-[#4f4f4f] focus:outline-none active:outline-none" class="bg-lightgray border-lightgray h-12 w-full rounded-md border p-4 text-lg placeholder:text-[#4f4f4f] focus:outline-none active:outline-none"
v-model="credential.password" v-model="credential.password"
placeholder="password" /> placeholder="password" />
</div> </div>

Loading…
Cancel
Save