code-server/cursor-fullstack/packages/frontend/cursor-web/tailwind.config.js
Cursor Agent 05acbfff1e feat: Set up fullstack Cursor IDE with backend and frontend
Co-authored-by: logato7838 <logato7838@vsihay.com>
2025-10-12 12:22:34 +00:00

20 lines
No EOL
420 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'cursor-bg': '#1e1e1e',
'cursor-sidebar': '#252526',
'cursor-border': '#3c3c3c',
'cursor-text': '#cccccc',
'cursor-accent': '#007acc',
'cursor-hover': '#2a2d2e',
}
},
},
plugins: [],
}