diff --git a/frontend/src/components/pc/admin/bot/XBotDialog.jsx b/frontend/src/components/pc/admin/bot/XBotDialog.jsx index d877c39..f74e18e 100644 --- a/frontend/src/components/pc/admin/bot/XBotDialog.jsx +++ b/frontend/src/components/pc/admin/bot/XBotDialog.jsx @@ -102,7 +102,7 @@ function Dropdown({ value, options, onChange, placeholder = '선택', className setIsOpen(false); }} className={`w-full px-4 py-2 text-left hover:bg-gray-50 transition-colors text-sm ${ - value === opt.value ? 'bg-sky-50 text-sky-600' : '' + value === opt.value ? 'bg-gray-100 text-gray-900' : '' }`} > {opt.label} @@ -269,7 +269,7 @@ function XBotDialog({ isOpen, onClose, botId = null, onSuccess }) { {/* 본문 */} {botLoading ? (
- +
) : (
@@ -287,7 +287,7 @@ function XBotDialog({ isOpen, onClose, botId = null, onSuccess }) { onChange={(e) => setUsername(e.target.value)} placeholder="realfromis_9" disabled={isEdit} - className="w-full pl-8 pr-4 py-2.5 border border-gray-200 rounded-lg focus:outline-none focus:ring-2 focus:ring-sky-500/20 focus:border-sky-500 disabled:bg-gray-50 disabled:text-gray-500" + className="w-full pl-8 pr-4 py-2.5 border border-gray-200 rounded-lg focus:outline-none focus:ring-2 focus:ring-black/15 focus:border-black disabled:bg-gray-50 disabled:text-gray-500" /> {!isEdit && ( @@ -370,7 +370,7 @@ function XBotDialog({ isOpen, onClose, botId = null, onSuccess }) { type="button" onClick={() => setIncludeRetweets(!includeRetweets)} className={`relative w-11 h-6 rounded-full transition-colors ${ - includeRetweets ? 'bg-sky-500' : 'bg-gray-300' + includeRetweets ? 'bg-black' : 'bg-gray-300' }`} > setExtractYoutube(!extractYoutube)} className={`relative w-11 h-6 rounded-full transition-colors ${ - extractYoutube ? 'bg-sky-500' : 'bg-gray-300' + extractYoutube ? 'bg-black' : 'bg-gray-300' }`} > setExcludeManagedChannels(!excludeManagedChannels)} className={`relative w-11 h-6 rounded-full transition-colors ${ - excludeManagedChannels ? 'bg-sky-500' : 'bg-gray-300' + excludeManagedChannels ? 'bg-black' : 'bg-gray-300' }`} > ( {filter} @@ -485,7 +485,7 @@ function XBotDialog({ isOpen, onClose, botId = null, onSuccess }) { type="submit" onClick={handleSubmit} disabled={!profileInfo || submitting || botLoading} - className="px-4 py-2.5 bg-sky-500 text-white rounded-lg hover:bg-sky-600 transition-colors disabled:opacity-50 disabled:cursor-not-allowed flex items-center gap-2" + className="px-4 py-2.5 bg-black text-white rounded-lg hover:bg-neutral-800 transition-colors disabled:opacity-50 disabled:cursor-not-allowed flex items-center gap-2" > {submitting && } {isEdit ? '수정' : '추가'}