Skip to content

Commit

Permalink
FEAT: Add more gardients (#96)
Browse files Browse the repository at this point in the history
Closes #79

## Description

add more gardient color for question background

[0165c1b4-299f-4876-85e9-98abf059a884.webm](https://github.com/mazipan/tanyaaja/assets/94950541/d709664b-e4a4-4ad0-bd2a-d7c739bb1bb7)
  • Loading branch information
FarhanRafid97 authored Oct 18, 2023
1 parent 6560e36 commit ceda850
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,30 @@ export const GRADIENTS: ClassMap[] = [
cssNative:
'linear-gradient(to right, rgb(249, 168, 212), rgb(216, 180, 254), rgb(129, 140, 248))',
},
{
id: 'witch',
class:
'bg-[conic-gradient(at_top_left,_var(--tw-gradient-stops))] from-slate-900 via-purple-900 to-slate-900',
cssNative:
'conic-gradient(at left top, rgb(15, 23, 42), rgb(88, 28, 135), rgb(15, 23, 42))',
},
{
id: 'space',
class: 'bg-gradient-to-b from-gray-900 to-gray-600 bg-gradient-to-r',
cssNative: 'linear-gradient(rgb(17, 24, 39), rgb(75, 85, 99))',
},
{
id: 'ice',
class: 'bg-gradient-to-tr from-rose-100 to-teal-100 text-black',
cssNative:
'linear-gradient(to right top, rgb(255, 228, 230), rgb(204, 251, 241))',
},
{
id: 'midnight',
class: 'bg-gradient-to-r from-blue-700 via-blue-800 to-gray-900',
cssNative:
'linear-gradient(to right, rgb(29, 78, 216), rgb(30, 64, 175), rgb(17, 24, 39))',
},
]

export const CARD_SCALES: ClassMap[] = [
Expand Down

0 comments on commit ceda850

Please sign in to comment.