RGB: the correct mode for screen design
RGB works by emitting red, green, and blue light at varying intensities. At (0,0,0), no light is emitted — black. At (255,255,255), all channels are at maximum — white. For screen design, RGB is the native color model of every display, browser, and operating system. CSS hex values (#3A86FF), rgb() functions, and HSL in code all ultimately render as RGB on screen. Design in RGB. Specify colors in RGB. Any color you specify in a design tool should be exported with an sRGB color profile — the web standard — to ensure that browser color management reproduces it correctly. The RGB model does not, however, provide an intuitive interface for making design decisions. Increasing the R channel while decreasing G and B to 'make a color warmer' is not a natural design operation.
