|
| 1 | +self { |
| 2 | + background-color: #282a36; /* Dracula background color */ |
| 3 | +} |
| 4 | +::-webkit-scrollbar-thumb { |
| 5 | + background-color: #6272a4; /* Dracula comment color, used here for scrollbar thumb for a subtle look */ |
| 6 | +} |
| 7 | +.DataValue::placeholder { |
| 8 | + color: #6272a4; /* Dracula comment color, for placeholder text to give it a subtle appearance */ |
| 9 | +} |
| 10 | +.DataModel { |
| 11 | + background-color: #44475a; /* Dracula selection color, for alternate backgrounds */ |
| 12 | +} |
| 13 | +.DataGridCollection, .DataTable, .DataSection { |
| 14 | + border-color: #50fa7b; /* Dracula green, used for borders to add vibrancy */ |
| 15 | + background-color: #44475a; /* Dracula selection color, for alternate backgrounds */ |
| 16 | +} |
| 17 | +.DataSection:hover, .DataTable:hover, .DataGridCollection:hover, .DataValue:hover, input:hover { |
| 18 | + border-color: #ff79c6; /* Dracula pink, for hover states to make elements stand out */ |
| 19 | +} |
| 20 | +.DataSection:focus-within, .DataTable:focus-within, .DataGridCollection:focus-within, .DataValue:focus-within { |
| 21 | + border-color: #8be9fd; /* Dracula cyan, for focus states to draw attention */ |
| 22 | +} |
| 23 | +.caption, label { |
| 24 | + color: #f8f8f2; /* Dracula foreground, for text to ensure readability */ |
| 25 | +} |
| 26 | +.invalid, .dg-error-list { |
| 27 | + background-color: #ff5555; /* Dracula red, for errors and warnings to make them highly noticeable */ |
| 28 | +} |
| 29 | +.SoftError > .invalid { |
| 30 | + background-color: #ffb86c; /* Dracula orange, for warnings and notices to differentiate from critical errors */ |
| 31 | +} |
| 32 | +.confirmed { |
| 33 | + background-color: #50fa7b; /* Dracula green, for success messages and buttons to signify go-ahead or okay */ |
| 34 | +} |
| 35 | +button[id="delete-section"] { |
| 36 | + color: #bd93f9; /* Dracula purple, for buttons and links to maintain the theme's color consistency */ |
| 37 | +} |
0 commit comments