;the drop-down menu of the "Font color" or "Highlight" button of the "Font" toolbar, the "Customize..." button

object EditColPalForm: TEditColPalForm
  Caption = 'Personalizar colores'
  ClientHeight = 250
  ClientWidth = 272
  object ColorLbl: TLabel
    Left = 8
    Top = 8
    Caption = 'Colores:'
  end
  object LstBx: TListBox
    Left = 8
    Top = 27
    Width = 161
    Height = 184
    ItemHeight = 18
    Style = lbOwnerDrawFixed
    OnDrawItem = LstBxDrawItem
    OnClick = LstBxClick
    OnDblClick = EditBtnClick
  end
  object NewBtn: TButton
    Left = 178
    Top = 27
    Width = 87
    Caption = 'Nuevo...'
    OnClick = NewBtnClick
  end
  object EditBtn: TButton
    Left = 178
    Top = 54
    Width = 87
    Caption = 'Cambiar...'
    OnClick = EditBtnClick
  end
  object DelBtn: TButton
    Left = 178
    Top = 81
    Width = 87
    Caption = 'Eliminar'
    OnClick = DelBtnClick
  end
  object UpBtn: TButton
    Left = 178
    Top = 115
    Width = 21
    Caption = '­'
    Font.Name = 'Symbol'
    Font.Style = [fsBold]
    OnClick = UpBtnClick
  end
  object DownBtn: TButton
    Left = 178
    Top = 139
    Width = 21
    Caption = '¯'
    Font.Name = 'Symbol'
    Font.Style = [fsBold]
    OnClick = DownBtnClick
  end
  object RestoreBtn: TButton
    Left = 178
    Top = 173
    Width = 87
    Caption = '&Restaurar'
    OnClick = RestoreBtnClick
  end
  object ColorDlg: TColorDialog
  end
end