This commit is contained in:
satr14 2025-03-27 15:50:42 +07:00
commit a2a4c9534d
3 changed files with 81 additions and 49 deletions

View file

@ -5,4 +5,21 @@ export default {
defaultFlavour: 'mocha',
prefix: 'ctp',
})],
theme: {
extend: {
backgroundImage: {
'-gradient-6': 'linear-gradient(-6deg, var(--tw-gradient-stops))'
},
animation: {
'scrolling-text-to-l': 'scroll 5s linear infinite',
'scrolling-text-to-r': 'scroll 5s linear infinite reverse',
},
keyframes: {
scroll: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' },
},
},
},
},
};