added some auth pages
This commit was merged in pull request #1.
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
darkMode: 'class',
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors:{
|
||||
black:{
|
||||
DEFAULT: '#2c2e3e',
|
||||
gray: '#a6a9b7'
|
||||
},
|
||||
primary: {
|
||||
DEFAULT: '#8e54e9',
|
||||
},
|
||||
white: {
|
||||
DEFAULT: '#fff',
|
||||
light: '#999'
|
||||
}
|
||||
},
|
||||
screens: {
|
||||
max_width: '1700px'
|
||||
},
|
||||
fontSize:{
|
||||
10: '10px',
|
||||
12: '12px',
|
||||
14: '14px'
|
||||
},
|
||||
backgroundImage: {
|
||||
login_gradient: 'linear-gradient(to right, #8e54e9 0, #4776e6 100%)'
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user