Skip to content

Instantly share code, notes, and snippets.

Roman Numerals Converter for Android has never and will never collect any personal data whatsoever.
@joelamos
joelamos / ColorizeAzureDevOpsBoard.js
Last active December 6, 2022 07:03
Colorizes Azure DevOps board tiles based on assignee. To be used in conjunction with a browser extension that runs JavaScript on page load
const colors = {
red: { lightTheme: '#ffb2b2', darkTheme: '#723333', persons: ['Kevin', 'Brittany'] },
blue: { lightTheme: '#9fbeec', darkTheme: '#355078', persons: ['Bryce', 'Kyle'] },
green: { lightTheme: '#ccf2cc', darkTheme: '#336245', persons: ['Joel', 'Creed'] },
purple: { lightTheme: '#d8b0d8', darkTheme: '#5d365d', persons: ['Ardalan', 'David'] },
pink: { lightTheme: '#ffe9e9', darkTheme: '#b97777', persons: ['James'] },
yellow: { lightTheme: '#ffe49f', darkTheme: '#d99c00', persons: ['Ethan', 'Tom'] },
turquoise: { lightTheme: '#a3e4dd', darkTheme: '#009989', persons: ['Mark', 'Creed'] },
tan: { lightTheme: '#c0b79d', darkTheme: '#948661', persons: ['Sonali', 'Thomas'] },
brown: { lightTheme: '#d0b089', darkTheme: '#72522c', persons: ['Adam', 'Robin'] },