mirror of
https://github.com/bitinflow/rerun-encoder.git
synced 2026-03-13 13:46:00 +00:00
first commit
This commit is contained in:
49
tailwind.config.js
Normal file
49
tailwind.config.js
Normal file
@@ -0,0 +1,49 @@
|
||||
const colors = require('tailwindcss/colors')
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: {
|
||||
DEFAULT: '#9146FF',
|
||||
'50': '#FEFEFF',
|
||||
'100': '#F2E9FF',
|
||||
'200': '#DAC0FF',
|
||||
'300': '#C298FF',
|
||||
'400': '#A96FFF',
|
||||
'500': '#9146FF',
|
||||
'600': '#700EFF',
|
||||
'700': '#5600D5',
|
||||
'800': '#40009D',
|
||||
'900': '#290065'
|
||||
},
|
||||
base: {
|
||||
DEFAULT: '#26262C',
|
||||
'50': '#A8A8B4',
|
||||
'100': '#9D9DAA',
|
||||
'200': '#878797',
|
||||
'300': '#727284',
|
||||
'400': '#5F5F6E',
|
||||
'500': '#4C4C58',
|
||||
'600': '#393942',
|
||||
'700': '#26262C',
|
||||
'800': '#0C0C0E',
|
||||
'900': '#000000'
|
||||
},
|
||||
purple: '#8d63f2',
|
||||
emerald: colors.emerald,
|
||||
rose: colors.rose,
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
require('@tailwindcss/forms'),
|
||||
require('@tailwindcss/typography'),
|
||||
require('@tailwindcss/aspect-ratio'),
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user