.. meta:: :description lang=en: Common workflows used in Krita. .. metadata-placeholder :authors: - Wolthera van Hövell tot Westerflier :license: GNU free documentation license 1.3 or later. .. _flat_coloring: ============= Flat Coloring ============= So you've got a cool black on white drawing, and now you want to color it! The thing we’ll aim for in this tutorial is to get your line art colored in with flat colors. So no shading just yet. We’ll be going through some techniques for preparing the line art, and we’ll be using the layer docker to put each color on a separate layer, so we can easily access each color when we add shading. .. note:: This tutorial is adapted from this `tutorial `_ by the original author. Understanding Layers -------------------- To fill line art comfortably, it's best to take advantage of the layerstack. The layer stack is pretty awesome, and it's one of those features that make digital art super-convenient. In traditional art, it is not uncommon to first draw the full background before drawing the subject. Or to first draw a line art and then color it in. Computers have a similar way of working. In programming, if you tell a computer to draw a red circle, and then afterwards tell it to draw a smaller yellow circle, you will see the small yellow circle overlap the red circle. Switch the commands around, and you will not see the yellow circle at all: it was drawn before the red circle and thus ‘behind’ it. This is referred to as the “drawing order”. So like the traditional artist, the computer will first draw the images that are behind everything, and layer the subject and foreground on top of it. The layer docker is a way for you to control the drawing order of multiple images, so for example, you can have your line art drawn later than your colors, meaning that the lines will be drawn over the colors, making it easier to make it neat! Other things that a layer stack can do are blending the colors of different layers differently with blending modes, using a filter in the layer stack, or using a mask that allows you to make parts transparent. .. tip:: Programmers talk about transparency as ''Alpha'', which is because the 'a' symbol is used to present transparency in the algorithms for painting one color on top of another. Usually when you see the word ''Alpha'' in a graphics program, just think of it as affecting the transparency. Preparing your line art ----------------------- Put the new layer underneath the layer containing the line art (drag and drop or use the up/down arrows for that), and draw on it. .. image:: /images/flat-coloring/Krita_filling_lineart14.png :alt: Layer structure for flatting in krita. …And notice nothing happening. This is because the white isn’t transparent. You wouldn’t really want it to either, how else would you make convincing highlights? So what we first need to do to color in our drawing is prepare our line art. There’s several methods of doing so, each with varying qualities. The Multiply Blending Mode -------------------------- So, typically, to get a black and white line art usable for coloring, you can set the blending mode of the line art layer to Multiply. You do this by selecting the layer and going to the drop-down that says **Normal** and setting that to **Multiply**. .. image:: /images/flat-coloring/Krita_filling_lineart1.png :alt: Blend mode setup of line art flat coloring. And then you should be able to see your colors! Multiply is not a perfect solution however. For example, if through some image editing magic I make the line art blue, it results into this: .. image:: /images/flat-coloring/Krita_filling_lineart2.png :alt: Effects of multiply blend mode. This is because multiply literally multiplies the colors. So it uses maths! What it first does is take the values of the RGB channels, then divides them by the max (because we're in 8bit, this is 255), a process we call normalising. Then it multiplies the normalized values. Finally, it takes the result and multiplies it with 255 again to get the result values. .. list-table:: :header-rows: 1 * - - Pink - Pink (normalized) - Blue - Blue (normalized) - Normalized, multiplied - Result * - Red - 222 - 0.8705 - 92 - 0.3607 - 0.3139 - 80 * - Green - 144 - 0.5647 - 176 - 0.6902 - 0.3897 - 99 * - Blue - 123 - 0.4823 - 215 - 0.8431 - 0.4066 - 103 This isn't completely undesirable, and a lot of artists use this effect to add a little richness to their colors. Advantages """""""""" Easy, can work to your benefit even with colored lines by softening the look of the lines while keeping nice contrast. Disadvantages """"""""""""" Not actually transparent. Is a little funny with colored lines. Using Selections ---------------- The second method is one where we'll make it actually transparent. In other programs this would be done via the channel docker, but Krita doesn't do custom channels, instead it uses Selection Masks to store custom selections. 1. Duplicate your line art layer. 2. Convert the duplicate to a selection mask. |mouseright| the layer, then :menuselection:`Convert --> to Selection Mask`. .. image:: /images/flat-coloring/Krita_filling_lineart_selection_1.png 3. Invert the selection mask. :menuselection:`Select --> Invert Selection`. 4. Make a new layer, and do :menuselection:`Edit --> Fill with Foreground Color`. .. image:: /images/flat-coloring/Krita_filling_lineart_selection_2.png And you should now have the line art on a separate layer. Advantages """""""""" Actual transparency. Disadvantages """"""""""""" Doesn't work when the line art is colored. Using Masks ----------- This is a simpler variation of the above. 1. Make a filled layer underneath the line art layer. .. image:: /images/flat-coloring/Krita_filling_lineart_mask_1.png 2. Convert the line art layer to a transparency mask |mouseright| the layer, then :menuselection:`Convert --> to Transparency Mask`. .. image:: /images/flat-coloring/Krita_filling_lineart_mask_2.png 3. Invert the transparency mask by going to :menuselection:`Filter --> Adjust --> Invert`. .. image:: /images/flat-coloring/Krita_filling_lineart_mask_3.png Advantages """""""""" Actual transparency. You can also very easily doodle a pattern on the filled layer where the mask is on without affecting the transparency. Disadvantages """"""""""""" Doesn't work when the line art is colored already. We can still get faster. Using Color to Alpha -------------------- By far the fastest way to get transparent line art. 1. Select the line art layer and apply the :guilabel:`Filter: Color to Alpha` dialog under :menuselection:`Filters --> Colors --> Color to Alpha...` menu item. The default values should be sufficient for line art. .. image:: /images/flat-coloring/Krita_filling_lineart_color_to_alpha.png Advantages """""""""" Actual transparency. Works with colored line art as well, because it removes the white specifically. Disadvantages """"""""""""" You'll have to lock the layer transparency or separate out the alpha via the right-click menu if you want to easily color it. Coloring the image ================== Much like preparing the line art, there are many different ways of coloring a layer. You could for example fill in everything by hand, but while that is very precise it also takes a lot of work. Let's take a look at the other options, shall we? Fill Tool --------- .. image:: /images/icons/fill_tool.svg :alt: Fill-tool icon. In most cases the fill-tool can’t deal with the anti-aliasing (the soft edge in your line art to make it more smooth when zoomed out) In Krita you have the grow-shrink option. Setting that to say… 2 expands the color two pixels. Threshold decides when the fill-tool should consider a different color pixel to be a border. And the feathering adds an extra soft border to the fill. Now, if you click on a gapless-part of the image with your preferred color… (Remember to set the opacity to 1.0!) Depending on your line art, you can do flats pretty quickly. But setting the threshold low can result in little artifacts around where lines meet: .. image:: /images/flat-coloring/Krita_filling_lineart7.png :alt: Colors filled with fill tool. However, setting the threshold high can end with the fill not recognizing some of the lighter lines. Besides these little artifacts can be removed with the brush easily. Advantages """""""""" Pretty darn quick depending on the available settings. Disadvantages """"""""""""" Again, not great with gaps or details. And it works best with aliased line art. Selections ---------- Selections work using the selection tools. .. image:: /images/flat-coloring/Krita_filling_lineart15.png :alt: Selecting with selection tools for filling color. For example with the :ref:`bezier_curve_selection_tool` you can easily select a curved area, and the with :kbd:`Shift +` |mouseleft| (not |mouseleft| :kbd:`+ Shift`, there's a difference!) you can easily add to an existing selection. .. image:: /images/flat-coloring/Krita_filling_lineart16.png :alt: Selection mask in Krita. You can also edit the selection if you have :menuselection:`Select --> Show Global Selection Mask` turned on. Then you can select the global selection mask, and paint on it. (Above with the alternative selection mode, activated in the lower-left corner of the stats bar) When done, select the color you want to fill it with and press the :kbd:`Shift + Backspace` shortcut. .. image:: /images/flat-coloring/Krita_filling_lineart17.png :alt: Filling color in selection. You can save selections in selection masks by |mouseright| a layer, and then going to :menuselection:`Add --> Local Selection`. You first need to deactivate a selection by pressing the circle before adding a new selection. This can serve as an alternative way to split out different parts of the image, which is good for more painterly pieces: .. image:: /images/flat-coloring/Krita_filling_lineart18.png :alt: Result of coloring made with the help of selection tools. Advantages """""""""" A bit more precise than filling. Disadvantages """"""""""""" Previewing your color isn't as easy. Geometric tools --------------- So you have a tool for making rectangles or circles. And in the case of Krita, a tool for bezier curves. Select the path tool (|path tool|), and set the tool options to fill=foreground and outline=none. Make sure that your opacity is set to 1.00 (fully opaque). .. |path tool| image:: /images/icons/bezier_curve.svg By clicking and holding, you can influence how curvy a line draw with the path tool is going to be. Letting go of the mouse button confirms the action, and then you’re free to draw the next point. .. image:: /images/flat-coloring/Krita_filling_lineart8.png :alt: Filling color in line art using path tool. You can also erase with a geometric tool. Just press the :kbd:`E` key or the eraser button. .. image:: /images/flat-coloring/Krita_filling_lineart9.png :alt: Erasing with path tool. Advantages """""""""" Quicker than using the brush or selections. Also decent with line art that contains gaps. Disadvantages """"""""""""" Fiddly details aren’t easy to fill in with this. So I recommend skipping those and filling them in later with a brush. Colorize Mask ------------- So it works like this: 1. Select the colorize mask tool. 2. Tick the layer you're using. 3. Paint the colors you want to use on the colorize mask. 4. Click update to see the results: .. image:: /images/flat-coloring/Krita_filling_lineart10.png :alt: Coloring with colorize mask. When you are satisfied, |mouseright| the colorize mask, and go to :menuselection:`Convert --> Paint Layer`. This will turn the colorize mask to a generic paint layer. Then, you can fix the last issues by making the line art semi-transparent and painting the flaws away with a pixel art brush. .. image:: /images/flat-coloring/Krita_filling_lineart11.png :alt: Result from the colorize mask. Then, when you are done, split the layers via :menuselection:`Layer --> Split --> Split Layer`. There are a few options you can choose, but the following should be fine: .. image:: /images/flat-coloring/Krita_filling_lineart12.png :alt: Slitting colors into islands. Finally, press **Ok** and you should get the following. Each color patch it on a different layer, named by the palette in the menu and alpha locked, so you can start painting right away! .. image:: /images/flat-coloring/Krita_filling_lineart13.png :alt: Resulting color islands from split layers. Advantages """""""""" Works with anti-aliased line art. Really quick to get the base work done. Can auto-close gaps. Disadvantages """"""""""""" No anti-aliasing of its own. You have to choose between getting details right or the gaps auto-closed. Conclusion ---------- I hope this has given you a good idea of how to fill in flats using the various techniques, as well as getting a hand of different Krita features. Remember that a good flat filled line art is better than a badly shaded one, so keep practicing to get the best out of these techniques!