aboutsummaryrefslogtreecommitdiff
path: root/docs/onboarding/tweaking.rst
blob: 9ad9ab26fcffab873128d7298823b9a36dbd51de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Tweaking thcolor
================

In order to start tweaking thcolor using Python instead of the CLI, you
can import utilities from the module. The minimal code for running the
server is the following:

.. code-block:: python

	from thcolor import Color

	color = Color.from_text('darker(#123456 10%)')
	print(color)

For more information, please consult the discussion topics and API reference
on the current documentation.