push
github
Merge pull request #23 from atlp-rwanda/ft-register implement User registration (Vendors and Buyers)
34 of 74 branches covered (45.95%)
Branch coverage included in aggregate %.
645 of 732 new or added lines in 15 files covered. (88.11%)
826 of 949 relevant lines covered (87.04%)
1.09 hits per line
1 |
/** @type {import('tailwindcss').Config} */
|
|
2 |
export default { |
× |
3 |
content: ['index.html', './src/**/*.{js,ts,jsx,tsx}'], |
× |
4 |
theme: {
|
× |
NEW
|
extend: {
|
× |
NEW
|
colors: {
|
× |
NEW
|
transparent1: '#EEF5FF', |
× |
NEW
|
primary: '#070F2B', |
× |
NEW
|
orange: '#FF4141', |
× |
NEW
|
black1: '#252525', |
× |
NEW
|
black2: 'rgba(0, 0, 0, 0.6)', |
× |
NEW
|
grey1: '#C9C9C9', |
× |
NEW
|
grey2: '#5C5C5C', |
× |
NEW
|
grey3: '#C7C7C7' |
× |
NEW
|
}, |
× |
NEW
|
boxShadow: {
|
× |
NEW
|
navbar: '0px 1px 3px -2px rgba(0, 0, 0, 1)' // Customize the rgba color value as needed |
× |
NEW
|
}, |
× |
NEW
|
animation: {
|
× |
NEW
|
'spin-slow': 'spin 1.5s linear infinite' |
× |
NEW
|
} |
× |
NEW
|
} |
× |
23 |
}, |
× |
24 |
plugins: []
|
× |
25 |
}; |
× |