mirror of
https://github.com/cdr/code-server.git
synced 2025-12-09 01:45:44 +01:00
20 lines
No EOL
420 B
JavaScript
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: [],
|
|
} |