35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
OCCUPATION_MAJOR_CODES = {
|
|
'11': 'Management',
|
|
'13': 'Business & Financial',
|
|
'15': 'Computer & Mathematical',
|
|
'17': 'Architecture & Engineering',
|
|
'19': 'Life, Physical, & Social Science',
|
|
'21': 'Community & Social Service',
|
|
'23': 'Legal',
|
|
'25': 'Education, Training, & Library',
|
|
'27': 'Arts, Design, & Media',
|
|
'29': 'Healthcare Practitioners',
|
|
'31': 'Healthcare Support',
|
|
'33': 'Protective Service',
|
|
'35': 'Food Preparation & Serving',
|
|
'37': 'Building & Grounds Maintenance',
|
|
'39': 'Personal Care & Service',
|
|
'41': 'Sales & Related',
|
|
'43': 'Office & Admin Support',
|
|
'45': 'Farming, Fishing, & Forestry',
|
|
'47': 'Construction & Extraction',
|
|
'49': 'Installation, Maintenance, & Repair',
|
|
'51': 'Production',
|
|
'53': 'Transportation & Material Moving',
|
|
'55': 'Military Specific',
|
|
}
|
|
|
|
GRAY = {'50':'#f8fafc','100':'#f1f5f9','200':'#e2e8f0',
|
|
'300':'#cbd5e1','400':'#94a3b8','500':'#64748b',
|
|
'600':'#475569','700':'#334155','800':'#1e293b',
|
|
'900':'#0f172a','950':'#020617'}
|
|
|
|
LIME = {'50': '#f7fee7','100': '#ecfcca','200': '#d8f999',
|
|
'300': '#bbf451','400': '#9ae600','500': '#83cd00',
|
|
'600': '#64a400','700': '#497d00','800': '#3c6300',
|
|
'900': '#35530e','950': '#192e03'}
|